Any help is sincerely appreciated.
For some reason in my unordered list, two last items do not float as expected.
you can see it at zenmonyDOTcom/immune-support-c30/
Here is the layout:
ul.categories-list {
width: 620px;
padding: 30px 0 10px 60px;
float: left;
min-height:425px;
background: url(/images/categories_bkgrnd_main.png) no-repeat;
list-style:none;
text-align: center;
}
.categories-list li {
position:relative;
margin:5px;
float:left;
display: block;
}
Is it because the items are not cleared properly?
Thank you!
Remove
float: left;fromul.categories-listand also modify padding as30px 0 10px 0and add
display: inline-block;to.categories-list liand removefloat: left;too