Help - Search - Members - Calendar
Full Version: Please Help Me With My Html/css Coding Problems
Zymic Webmaster Forums > Web Design & Development > Client Side Scripting > HTML and CSS
Raiin
This issue has been resolved, Thanks for the help happy.gif
MrTouz
to start can you please take all 3 files and put it in ONE file to make sure the problem comes from CSS and not from your tables, very often when you play with including headers and footers you have table problems.

If its css, i suggest you play with positions :

from this :

CODE
div.mainnav {
width: 189px;
top: 446px;
left: 19px;}


to this :

CODE
div.mainnav {
position:relative;
float:left;
width: 189px;
top: 446px;
left: 19px;
}


This should make it so the nav and the content area are in the same line but the nav floated left, as well with your content but you set a certain margin to your content so it goes a litle bit on the right (just as your css saids)
Raiin
QUOTE(MrTouz @ Jul 7 2008, 12:38 AM) *
to start can you please take all 3 files and put it in ONE file to make sure the problem comes from CSS and not from your tables, very often when you play with including headers and footers you have table problems.

If its css, i suggest you play with positions :

from this :

CODE
div.mainnav {
width: 189px;
top: 446px;
left: 19px;}


to this :

CODE
div.mainnav {
position:relative;
float:left;
width: 189px;
top: 446px;
left: 19px;
}


This should make it so the nav and the content area are in the same line but the nav floated left, as well with your content but you set a certain margin to your content so it goes a litle bit on the right (just as your css saids)



Thanks for your help happy.gif Your method seems like a good idea, but I resolved my problem. It turns out I forgot to add another column in my table for the content, that's why it remained in the same column as the navigation bar. It was your reply that gave me the idea, so thanks happy.gif
MrTouz
QUOTE(MrTouz @ Jul 7 2008, 12:38 AM) *
to start can you please take all 3 files and put it in ONE file to make sure the problem comes from CSS and not from your tables, very often when you play with including headers and footers you have table problems.


biggrin.gif as usual... smile.gif
This is a "lo-fi" version of our main content. To view the full version with more information, formatting and images, please click here.
Invision Power Board © 2001-2012 Invision Power Services, Inc.