Ask your WordPress questions! Pay money and get answers fast! Comodo Trusted Site Seal
Official PayPal Seal

css issues affecting website layout WordPress

  • SOLVED

I think there are some css issues affecting my website, in particular the <strong>bottom</strong> 6 image boxes... in some cases they format correctly (2 x rows of 3 boxes), but if you continually refresh the website sometimes the boxes are out of alignment.

http://www.perthmetro.net/patio/

Answers (1)

2013-09-08

Abdelhadi Touil answers:

Hi.
In your css file try to add clear: both; to #widgets id, this should fix the problem.
Change this:

#widgets {
margin-top: 40px;
}


To this:

#widgets {
clear: both;
margin-top: 40px;
}


pjeaje comments:

20 reloads and all good! Thanks :)


pjeaje comments:

Geez is just me or is the explanation on how to award the money too hard to understand?


pjeaje comments:

OH NO! the sidebar has dropped off to the bottom of the main content section!


pjeaje comments:

Fixed it...

#widgets {

margin-top: 40px;

}


#widgets.home-widgets {
clear: both;
}