Okay, I know. As a certified webmaster I should be able to figure this out. but... could someone please help me.
I am trying to place some text to the right of navigation links, within the same div.
here is the html
<div id="navigation">
<ul>
<li><a href="#">Welcome</a></li>
<li><a href="#">About</a></li>
<li><a href="#">Services</a></li>
<li><a href="#">Store</a></li>
<li><a href="#">Magazine</a></li>
<li><a href="#">Calender</a></li>
<li><a href="#">Policy</a></li>
<li><a href="#">Contact</a></li>
</ul>
<p>West Hampden Avenue Denver Co XXX-000-X0X0</p>
</div>
Here is the CSS
#navigation{
border-style:solid;
border-color:#3f6635;
width:100%;
height:26px;
background-color:#5c3566;
}
ul
{
padding:0;
margin:0;
list-style-type:none;
}
li {
display:inline;
font-size:1.55em;
}
Here is a jpeg showing what I am trying to accomplish.
Thank you for your response.