Hi,
I want to place firstly an image and then three lists side
by side in a div. It is to act as a footer to a web page. What would be the best way to do this? I have made some kind of an attempt. The first list appears after the image but then the positioning gets lost. I am not using position:absolute to avoid resizing problems. Here is the code:
<head>
<style type="text/css">
body
{ text-align: center;
min-width: 1044px;
margin: 0px 0px;
padding: 0px;
font-family: arial;
}
#wrapper
{ position: relative;
text-align: left;
width: 1044px;
height: 100%;
margin: 0 auto;
}
#lower-block
{ width: 1010px;
height: 170px;
border-style: dotted;
border-width: 1px;
}
#first-list
{ margin-left:262px;
padding-left: 50px;
width:190px;
height:130px;
}
#first-list li a
{ font-family:arial, verdana, sans-serif;
font-size: 11px;
text-decoration: none;
color: #494B3E;
}
#first-list li a:hover
{ text-decoration: underline;
}
.bullet
{ list-style-image: url(arrow_85.gif);
}
</style>
</head>
<body>
<div id="wrapper">
<div id="lower-block" style="background-color:#FFDEAD;">
<a href="#">
<img style="float:left;margin-left:11px;
border-right:1px dotted;padding:0px 15px 0px 12px;"
alt="" src="" width="223" height="147" />
</a>
<ul id="first-list">
<li style="list-style-type:none;font-size:17px;
font-weight:bold;color:blue">This company<br></li>
<li class="bullet"><a href="#">Another Site</a></li>
<li class="bullet"><a href="#">Jobs With Us</a></li>
<li class="bullet"><a href="#">Regional</a></li>
<li class="bullet"><a href="#">Advertisement</a></li>
<li class="bullet"><a href="#">Charity Donor</a></li>
</ul>
<ul id="first-list" style="margin:0px 0px 0px 580px;">
<li style="list-style-type:none;font-size:17px;
font-weight:bold;color:blue">This company<br></li>
<li class="bullet"><a href="#">Another Site</a></li>
<li class="bullet"><a href="#">Jobs With Us</a></li>
<li class="bullet"><a href="#">Regional</a></li>
<li class="bullet"><a href="#">Advertisement</a></li>
<li class="bullet"><a href="#">Charity Donor</a></li>
</ul>
<ul id="first-list" style="margin:0px 0px 0px 580px;">
<li style="list-style-type:none;font-size:17px;
font-weight:bold;color:blue">This company<br></li>
<li class="bullet"><a href="#">Another Site</a></li>
<li class="bullet"><a href="#">Jobs With Us</a></li>
<li class="bullet"><a href="#">Regional</a></li>
<li class="bullet"><a href="#">Advertisement</a></li>
<li class="bullet"><a href="#">Charity Donor</a></li>
</ul>
</div>
</div> <!--4 wrapper-->
</body>
</html>
I would be grateful for all help.
I want to place firstly an image and then three lists side
by side in a div. It is to act as a footer to a web page. What would be the best way to do this? I have made some kind of an attempt. The first list appears after the image but then the positioning gets lost. I am not using position:absolute to avoid resizing problems. Here is the code:
<head>
<style type="text/css">
body
{ text-align: center;
min-width: 1044px;
margin: 0px 0px;
padding: 0px;
font-family: arial;
}
#wrapper
{ position: relative;
text-align: left;
width: 1044px;
height: 100%;
margin: 0 auto;
}
#lower-block
{ width: 1010px;
height: 170px;
border-style: dotted;
border-width: 1px;
}
#first-list
{ margin-left:262px;
padding-left: 50px;
width:190px;
height:130px;
}
#first-list li a
{ font-family:arial, verdana, sans-serif;
font-size: 11px;
text-decoration: none;
color: #494B3E;
}
#first-list li a:hover
{ text-decoration: underline;
}
.bullet
{ list-style-image: url(arrow_85.gif);
}
</style>
</head>
<body>
<div id="wrapper">
<div id="lower-block" style="background-color:#FFDEAD;">
<a href="#">
<img style="float:left;margin-left:11px;
border-right:1px dotted;padding:0px 15px 0px 12px;"
alt="" src="" width="223" height="147" />
</a>
<ul id="first-list">
<li style="list-style-type:none;font-size:17px;
font-weight:bold;color:blue">This company<br></li>
<li class="bullet"><a href="#">Another Site</a></li>
<li class="bullet"><a href="#">Jobs With Us</a></li>
<li class="bullet"><a href="#">Regional</a></li>
<li class="bullet"><a href="#">Advertisement</a></li>
<li class="bullet"><a href="#">Charity Donor</a></li>
</ul>
<ul id="first-list" style="margin:0px 0px 0px 580px;">
<li style="list-style-type:none;font-size:17px;
font-weight:bold;color:blue">This company<br></li>
<li class="bullet"><a href="#">Another Site</a></li>
<li class="bullet"><a href="#">Jobs With Us</a></li>
<li class="bullet"><a href="#">Regional</a></li>
<li class="bullet"><a href="#">Advertisement</a></li>
<li class="bullet"><a href="#">Charity Donor</a></li>
</ul>
<ul id="first-list" style="margin:0px 0px 0px 580px;">
<li style="list-style-type:none;font-size:17px;
font-weight:bold;color:blue">This company<br></li>
<li class="bullet"><a href="#">Another Site</a></li>
<li class="bullet"><a href="#">Jobs With Us</a></li>
<li class="bullet"><a href="#">Regional</a></li>
<li class="bullet"><a href="#">Advertisement</a></li>
<li class="bullet"><a href="#">Charity Donor</a></li>
</ul>
</div>
</div> <!--4 wrapper-->
</body>
</html>
I would be grateful for all help.