magnus_vb
-
No 100% width with Modernize?
Thanks strages, setting width to 100% on the html element, seems to solve the issue. Strange, but working… ;) Magnus
-
Wordpress against ExpressionEngine
Thanks Chris I will check out Kirby :) Magnus
-
image gallery with with description and full size image with CSS
Hi, how do you plan to show column 2 and 3? On the mockup image it looks like iframes (with scrollbars)? Maybe one way to do it is to have just two divs: div 1. Thumbnails with position static div 2. Text plus big image The thumbnail image can h…
-
Anchor Problem, and a question about Privacy and T & C page.
Hmmm... tested in Safari, but it does not scroll at all (from homepage using the second banner (Graphic design). But, maybe you can use a empty div just above the headline… and bypass the hash name in javascript? Just thinking loud. Like this test:…
-
What is the best way of clearing floats in css?
I have this in my stylesheet: .group:after { content: ""; display: table; clear: both; visibility: hidden; } Then I just add the class "group" the the element to have it clear (don't use Compass). Just my 2 cents…
-
Which is the "best" boilerplate?
Thanks Andy for the inside tip!
-
Which is the "best" boilerplate?
Thank You all for your suggestions and insights. Much appreciated and very helpful :) It' so easy to be blinded by all the features a framework have… But, it's very true that it's much easier to understand (and change) the code you h…
-
Hover effect problem
Hey Kaladan, This might be one way to do it: hover two colors li a:hover { color: red; } a:hover .menu-entypo { color: green; } I tried to solve it without the span - but could not
-
Do I really, really need to move to SASS?
For me, variables and nesting in SCSS is the selling point. And with Codekit you don't have to switch over to the web browser for a reload. I have a Safari window to the left and the code editor (Chocolat) to the right.
-
Width problems on mobile site
Hey svoltmer There are some issues on my iPhone 4. But, in the viewport meta tag I always only have this: meta name="viewport" content="width=device-width, initial-scale=1" Not sure if "maximum-scale=2" affect the view…
-
New to css coding and need help with hiding attribute text on my website
Marcey, just a wild guess: what happens if you remove (or comment out) the line Does that break the cart? Maybe you already have tried that ;) Otherwise, maybe some of the other methods of hiding
-
Does Firefox ignore max-width? Image is much too big
Hey Webster I'm not sure this will solve your problem. But, if removing "float: left" on div id "primary" and also removing the "max-width" on div id container, it seems to work better (at least in Safari). The lo…