I've attached images of what is happening and what it should look like.
The html looks like this
- Code: Select all
<div id="packagescontent">
<section id="unveiled">
<div class="grid3col">
<div class="column first">
text and images.....
</div>
<div class="column middle">
text and images...
</div>
<div class="column last">
text and images...
</div>
</div>
</section>
/* that's for the first row. The second row is exactly the same, still within the "packagescontent" division. */
<section id="unveiled">
<div class="grid3col">
<div class="column first">
text and images.....
</div>
<div class="column middle">
text and images...
</div>
<div class="column last">
text and images...
</div>
</div>
</section>
</div>
And here's the CSS for those tags
- Code: Select all
#packagescontent {
width:930px;
margin-left: auto;
margin-right: auto;
}
.grid3col {
margin-top: 40px;
margin-bottom: 50px;
margin-left: auto;
margin-right: auto;
width: 100%;
display: block;
clear: both;
}
#unveiled .column {
width: 266px;
margin-left: 40px;
float: left;
}
.column.first {
margin-left: 0 !important;
width: 266px;
margin-bottom: 50px;
}
How can I fix this problem?? It only happens sometimes, so I think maybe its on the theme's end?? Please help!? Thanks.