Forum Moderators: not2easy
The body of my site is composed of two Div's; a navigation div that is floated to the right and a content div. See the following examples:
HTML:
<div id="navigation">Hooblie booblie</div>
<div id="content">Yarbla barbla</div>
CSS:
#navigation {
margin-right: 0px;
margin-top: 0px;
margin-left: 0px;
padding-top: 0px;
padding-right: 15px;
text-align: left;
float: right;
width: 205px;
}
#content {
padding-left: 15px;
padding-bottom: 10px;
padding-right: 15px;
width: 530px;
}
This causes the navigation to get spidered before my content and my search listings look horrible as a result. I want to put the content first in the page source without changing the look of the site for my visitors.
It seems that when I get something working in FireFox, IE takes a dump... Are there any experts out there that can shed some light on this for me?