Hi all,
I am relatively new to CSS - used to use tables to layout a webpage. The problem I am having is that I have a div aligned left that I plan to use for navigation.
I have added a list to it and want to get the items in the list to appear like elements of a table - like the ones here [www.st-and.ac.uk] for prospective students etc.
The only problem I have is that the doesn't seem to start at the same place as the div but rather about 50px to the right. Why is this?
Here is the page: www.st-and.ac.uk/~jl386/site/ and here is the code:
#leftRail{
width:175px;
float:left;
margin-right:25px;
margin-bottom:25px;
background-image:url(blue_background.jpg);
background-repeat:no-repeat;
color:#fff;
margin-left:15px;
}
#leftRail li {
list-style:none;
background-color:#FF0000;
color:#fff;
border-bottom:1px solid;
width:175px;
}
then on the page:
<div id="leftRail">
<ul>
<li><a href="index.php">Home Page</a></li>
<li>Events</li>
<li>News</li>
<li><a href="photo.php">Photo Album</a></li>
<li>Aurora</li>
<li>Comittee</li>
<li>Links</li>
</ul>
</div>
Any help would be really appreciated.
I am relatively new to CSS - used to use tables to layout a webpage. The problem I am having is that I have a div aligned left that I plan to use for navigation.
I have added a list to it and want to get the items in the list to appear like elements of a table - like the ones here [www.st-and.ac.uk] for prospective students etc.
The only problem I have is that the doesn't seem to start at the same place as the div but rather about 50px to the right. Why is this?
Here is the page: www.st-and.ac.uk/~jl386/site/ and here is the code:
#leftRail{
width:175px;
float:left;
margin-right:25px;
margin-bottom:25px;
background-image:url(blue_background.jpg);
background-repeat:no-repeat;
color:#fff;
margin-left:15px;
}
#leftRail li {
list-style:none;
background-color:#FF0000;
color:#fff;
border-bottom:1px solid;
width:175px;
}
then on the page:
<div id="leftRail">
<ul>
<li><a href="index.php">Home Page</a></li>
<li>Events</li>
<li>News</li>
<li><a href="photo.php">Photo Album</a></li>
<li>Aurora</li>
<li>Comittee</li>
<li>Links</li>
</ul>
</div>
Any help would be really appreciated.