HugoGiraudel
-
Change Body Background Every 10 sec
Change body's ID/Class every 10 seconds. Each class/ID maps a specific background. I guess JS will be lighter than if you try to change the background dynamically. Quick example: http://jsfiddle.net/xdUBZ/1/
-
Non-Sticky Width
.container { width: 100%; max-width: 980px; }
-
Prevent css3 animation from returning to original state?
You got the solution already: animation-fill-mode: forwards;
-
PHP Email doesn't work!!!!!!!! HELP PLEASE
Do you really think someone will be able to dig into this wall of code? :s Use code blocks efficiently, or paste into a Fiddle/Pen.
-
Justifying a site redesign for an ecommerce website. I seriously think we need a redesign, but it's
Easy enough. 13% of your visitors are mobile users. Serving these people a mobile-friendly version of your site will increase chances they buy your stuff.
-
changing text color with Blink
Use a CSS animation. @keyframes blink { to { color: red; } } .my-element { color: blue; animation: blink 1s steps(2, start) infinite; }
-
Changing imgs by "a:hover". Help!
Depending on the size of your image, you might want to use a little pseudo-element hack in order to avoid an awkward loadtime when hovering. .my-element:after { content: ''; background: url(my-hover-image); clip: rect(…
-
As a front end person, what steps can I take to improve the speed at which the site loads?
http://browserdiet.com/ https://developers.google.com/speed/docs/best-practices/rules_intro
-
Hi I have a client that want an Ecommerce
Maybe Prestashop?
-
height auto important
i don't know the usage of !important It's called the bang hack. It relies on the inability for Internet Explorer 6 to understand !important. Basically, you set whatever you like with the hammerbash flag, then you override it with what…
-
Link and img with an :after
Could you make a CodePen so we can play around your code please?
-
Just switched from PC to Mac, what code editor is best?
Sublime Text 2. You can customize your workflow as you wish.
-
can i get this gradient through css?
As Paulie demonstrated the gradient can be generated but the noise would require some javascript http://rappdaniel.com/other/noisy-sample/ Or a transparent PNG.
-
CSS-Tricks Forum Banner
What do you guys think the significance of this character is? Is it representing children not listening to their elders? Or do you think it was just a mistake? Gingers are not loved. Sorry. :D
-
Github
Don't do this. If we work locally and not directly on the server, there is a reason. It's dangerous.
-
using @media queries
Working as intented here. Starting from 1224px viewport width, there is your layout. Before that it's broken.
-
priority of external stylesheets
Please, you're on a forum asking for help. Not on a chat talking to your mates. Try making sentences with a meaning please. I'm facing some issues figuring out what you mean by: m applying 3 stylesheets external on my html- S2,S3.. m…
-
Responsive site width
I am the only one finding ironic to see "I'm not perfect but my pixels are" in a CSS related question regarding positioning? Anyway, looks great on both portrait and landscape on my Samsung Galaxy SII.
-
Multiple Pages, 1 CSS File
http://w3schools.com/ Please don't recommand W3Schools. Reason given by Dillon.
-
Multiple Pages, 1 CSS File
i have also embeded a song into the website, Please don't.
-
php resize image
You could use the CSS clip property: http://tympanus.net/codrops/2013/01/16/understanding-the-css-clip-property/
-
Body Containers?????
CodePen is a platform for client side code, you cannot run PHP in it. Anyway, there is nothing stopping you from using the body as the main container.
-
How to make a vertical flyout menu 4 levels.
Probably. Anyway, having to dig into a 4-levels navigation is kind of bad UX. Especially if relies on mouseover, which is getting completely awful after the first level (unless you involve some JS to improve usability).
-
How to make a vertical flyout menu 4 levels.
In my opinion even 3 levels is too much (but acceptable). You could probably think of a way to make it fit into 2 levels. Take a look at huge websites with a complicated nested navigation like Amazon: most of the time it takes 2 levels.
-
Oflline caching website
If you're thinking of improving performance, I guess the site is slow. But, it seems you only use client side language (static). If you happen to have a slow static site, I think you're doing something wrong and this is probably meant to …
-
alignment issue
I don't see the problem at all. Could you describe what you want?
-
Minifying -- best practices/tools
If no mistake @TheDoc, Compass has nothing to do with minification. Sass does the thing.
-
CSS Responsive Circles
Brilliant technique @nordstromdesign (are the position and height really necessary? seems to work without it)...how did you come up with using padding-top like that? If no mistake, the idea first came up in A List Apart by Thierry Koblentz to k…
-
1024px 32 column based responsive website framework?
Why don't you just make one? Obviously you're facing a very uncommon case where you need a 32-columns grid system (which is a bad idea imo). Then just roll up your sleeves and make one. It won't take much more than one or two hours a…
-
Make div disappear with CSS media queries on screen width.
With JS you could...couldn't you? Very easily, but that would require JS to do something you could (and have to) do with CSS only (Media Queries).