text-align:center; in body tag won't work for netscape. what should i do? do I just put a <center> there?It should work fine. Don't use <center>. Show us your page and tell us exactly what you want.This is the address
<!-- m --><a class="postlink" href="http://www.edinburghcityhotels.co.uk/">http://www.edinburghcityhotels.co.uk/</a><!-- m -->
and:
CSS FILE (<!-- m --><a class="postlink" href="http://www.edinburghcityhotels.co.uk/files/edinburgh.css">http://www.edinburghcityhotels.co.uk/fi ... nburgh.css</a><!-- m -->)if you want it to center the page then wrap the entire page in a div give it an id such as mainDiv or something then add to your css
#mainDiv {
position: relative;
margin-left: auto;
margin-right: auto;
}if you want it to center the page then wrap the entire page in a div give it an id such as mainDiv or something then add to your css
#mainDiv {
position: relative;
margin-left: auto;
margin-right: auto;
}
When you do this, make sure you give it a width or you wont see any centering.
<!-- m --><a class="postlink" href="http://www.edinburghcityhotels.co.uk/">http://www.edinburghcityhotels.co.uk/</a><!-- m -->
and:
CSS FILE (<!-- m --><a class="postlink" href="http://www.edinburghcityhotels.co.uk/files/edinburgh.css">http://www.edinburghcityhotels.co.uk/fi ... nburgh.css</a><!-- m -->)if you want it to center the page then wrap the entire page in a div give it an id such as mainDiv or something then add to your css
#mainDiv {
position: relative;
margin-left: auto;
margin-right: auto;
}if you want it to center the page then wrap the entire page in a div give it an id such as mainDiv or something then add to your css
#mainDiv {
position: relative;
margin-left: auto;
margin-right: auto;
}
When you do this, make sure you give it a width or you wont see any centering.