Any idea why my image does not horizontally line up with the text above and below it please? http://dl.dropbox.com/u/2306276/site/index.html
Asked
Active
Viewed 114 times
2 Answers
1
You're using a different class for the image element than for the text elements you want on the right column. Set the image's class to grid_13 (same as the text) and add push_3, so it moves 3 columns to the right. It'd be better to rearrange your elements into divs though; otherwise you'll have to give each element specific properties, and that beats the purpose of using a grid system.

corbenik
- 126
- 2
- 8
-
great, that worked! thanks. Only problem my image is now huge! – pingu Mar 31 '12 at 19:41
-
fixed by adding a div container. – pingu Mar 31 '12 at 19:43
-
Yeah, like I said, it's better to place your elements in divs and give the divs the grid_X, push_X classes, otherwise you'll have to give each element specific properties to style them. I'd put awith class grid_3, and another– corbenik Mar 31 '12 at 19:44with class grid_13 inside each status div, and the individual elements inside those instead.
0
In the 960 Grid system, every nested class has to have a "grid_x". You div's in between ("Status" etc) which don't use the grid system, I imagine these are throwing it off.
Try adding grid classes to these, using "alpha" and "omega" where appropriate.

Paul Grimshaw
- 19,894
- 6
- 40
- 59
-
Thanks for the reply, added "alpha" where appropriate, no change at all. – pingu Mar 31 '12 at 19:38