AntonNiklasson
-
how to mantain the state of a page when loaded with jquery
Why the need to update the page if you insert data the way you do? Include some code, it's kinda hard to help you othrwise.
-
rollover circle segments
I would recommend using the canvas element for this.
-
Using CSS to Style UL with 4 or more List Items
This might be helpful: http://lea.verou.me/2011/01/styling-children-based-on-their-number-with-css3/ Otherwise use that jQuery you have there. One thing that might make it easier is to style the ul as it would look with 4 or more li's in it as…
-
Center align entire webpage
Stop using the center element, it's not semantic. What if you want to change how the site is layed out? Then you'd have to change the markup. To center an element, you can set both the left and right margins to auto. Like this: #wrapper …
-
Display Content Based on IP Address
This might help a bit: http://stackoverflow.com/questions/391979/get-client-ip-using-just-javascript
-
Can Someone Teach Me CSS? Please
http://css-tricks.com/video-screencasts/58-html-css-the-very-basics/
-
Shiny Demos
I wouldn't say you're going to jail for using them. But I definitely think you should try to create something by yourself. Don't just copy and paste code. Look at the examples, tweak the code a bit and try to understand it line by lin…
-
Shiny Demos
Is this what you mean? http://shinydemos.com/ There's always some sort of source code. Usually you can right click any site element and "inspect" it or whatever your browser calls it. Try it, and then come back here with some specifi…
-
WP, need different background for p and img
Create a pen at www.codepen.io and try to isolate your problem. Makes it a lot easier for any forum member to help.
-
Wordpress sidebar custom menu
I don't think that's the best way of doing it. WP comes with a built in widget for showing custom menus, why not use that instead? Putting the PHP code in the sidebar.php like that isn't very flexible. Create a new menu in Appearance…
-
Wordpress sidebar custom menu
One way is to check out the outputted source code in your browser and from there figure out how to style it. You might find that WP automatically puts classes like .custom-menu to an un-ordered list when showing custom menus. I'm not saying it…
-
Website Critique
How come you have got all of your page wrapped in a div with id of 'header'? Another thing: Heres the #page-wrap declaration from your stylesheet: #page-wrap { width: 960px; width: 100%; min-height: 100%; height: auto !im…
-
SASS Media Query With Variable Declaration
I found this: http://stackoverflow.com/questions/9122195/using-sass-variables-with-css3-media-queries So media queries are client-side, and since SASS is server-side this won't behave the way I wanted it. Too bad.
-
How to solving : CSS selector “:active” not working ?
I guess if you do it like this it won't work: http://codepen.io/AntonNiklasson/pen/21/2 If that's you problem, put the :active below the :hover.
-
Changes to Body in CSS have no effect on site all of a sudden
Create a pen at www.codepen.io. Provide us with some more code and I am sure we can help you.
-
CSS Counter
Nice :) Oh, okey. Realized that just now. Thanks a lot Chris!
-
Modular CSS
Yeah, I'm currently using comments to create sections. Just wanted to know how you guys do it. It would be kinda fun to hear about some alternative way of writing CSS though, is there anyone out there using some other technique?
-
Modular CSS
Aah okey. It was just a thought, guess it's to much work editing them :)
-
Modular CSS
Okay. Yeah I've used reset files and grids. But I'm thinking about going all the way and create multiple stylesheets like header.css, main.css, footer.css and so on. Do you guys see this as something inconvenient, or something really usef…
-
Image Grid Like Google Search
Yip, I've seen Masonry! Looks really nice. I'm trying to create some sort of recipe for the grid so that it's possible to make the images any height. As for now, a really tall image will mess up the layout. I would love to have the …
-
Wordpress Blog Posts Theme issue... (CSS targeting)
Yeah man, I can tell you've got som mad Google skillz! What usually do is that I have a few standard classes when writing the markup. .post, .post-title, .post-meta, .post-body and so on. Implement these in the WordPress loop, and you're …
-
Correct markup of user profile
is probably what i would use. Then if you want the "Height:" to be bold or something, just put them in spans and style it from there!
-
Need people to test my contact form
Why do you need us to submit the form? Just make up a bunch of names and emails and do it yourself. You'll probably save loads of time by doing so, instead of waiting for us to do it.
-
I want to increase size of css3 border but not "move" the content at the same time.
Yep, sorry about that. Of course it's the padding.
-
100% width footer with image attached to top - HELP!
I might be a bit picky sayin' this. But what if you want to change the white background to, lets say, some gray tone in the future? Then the white grass background wouldn't really fit in. By using the transparent png, and a slightly diffe…
-
Php Headers already sent... What should i do?
That's because something has already been sent to the client-side. I think... Use this function instead: http://codex.wordpress.org/Function_Reference/wp_redirect
-
PHP Help
Yeah, if you submit the page after the selection has been made it is possible. One Two Three And then you could use this php-code: Something like that. Those are the basics.
-
I want to increase size of css3 border but not "move" the content at the same time.
I guess you could animate the top-margin of the same element from 0px to -5px over the same time interval.
-
Wordpress Styling Widgets, Please help
Don't be such a dick. Why would we help you now? If no one answers; give us more info, explain everything deeper. Good luck.