I'm currently working on a website and encountering a CSS issue. It appears fine in Firefox, but has some odd layout problems in Chrome. I would appreciate any assistance on how to resolve this issue.
On the main page, if you scroll down, you'll notice 3 paragraphs. They display correctly in FF, however in Chrome, the header line is getting mixed with the first paragraph.
Please help me find a solution for this.
<div style="color: white;font-size: 14px;margin: 0 0 30px 0;padding: 0;position: absolute;text-align: left;top: 780px;width: 960px; display:block;">
Promotional Models | Photographic Models | Bikini Models | Lingerie Models | Model Competitions| Sporting Events | Dancer’s | Cheerleaders | Card Girls | Grid Girls |Poker Nights | Promo Girls | Karaoke + more
</div>
The CSS for the paragraphs is as follows:
#xtra-paragraph {
color: #DBDBDB;
font-size: 13px;
line-height: 16px;
margin-bottom: 60px;
margin-top: 35px;
display: block;
}
#xtra-paragraph p {
text-align: left;
}