Do them like this:
Code:
<li><a href="http://ucfilespace.uc.edu"><strong>UCFileSpace</strong></a></li>
Not like this:
Code:
<li><strong><a href="http://ucfilespace.uc.edu">UCFileSpace</a></strong></li>
Here, I've done them all for you correctly:
HTML Code:
<div id="ddblueblockmenu">
<div class="menutitle">Degree Information </div>
<ul>
<li><a href="aas.html"><strong>Associate of Applied Science </strong></a></li>
<li><a href="certificate.html"><strong>Professional Certificate </strong></a></li>
</ul>
<div class="menutitle">Useful Links </div>
<ul>
<li><a href="https://ixpress-server2.uc.edu/Login.asp?SIS=18354240&APPName=Register"><strong>Register for Classes </strong></a></li>
<li><a href="https://ixpress-server2.uc.edu/Login.asp?SIS=18354240&APPName=Schedule"><strong>View Your Schedule </strong></a></li>
<li><a href="https://www.onestop.uc.edu/studentlogin.asp?Target=grades&Message=login"><strong>Check Your Grades </strong></a></li>
<li><a href="https://dars.uc.edu/darswebstu_3.0.10/servlet/SignInServlet"><strong>Degree Audit</strong></a></li>
<li><a href="courses.html"><strong>Class Descriptions</strong></a></li>
<li><a href="http://onestop.uc.edu"><strong>OneStop Services</strong></a></li>
<li><a href="http://www.uc.edu/registrar/calendars.html"><strong>Academic Calendars</strong></a></li>
<li><a href="http://blackboard.uc.edu"><strong>Blackboard</strong></a></li>
<li><a href="http://ucfilespace.uc.edu"><strong>UCFileSpace</strong></a></li>
<li><a href="http://email.uc.edu"><strong>Bearcat E-Mail</strong></a></li>
</ul>
<div class="menutitle">Policies</div>
<ul>
<li><a href="policies-lab.html"><strong>Lab Policies </strong></a></li>
<li><a href="policies-checkout.html"><strong>Checkout Policies </strong></a></li>
</ul>
<div class="menu_btm">
<div align="left"><img src="images/round.jpg" alt="rounded corder" width="42" height="20" align="absbottom" /></div>
</div>
</div>
</div>
Probably though, you shouldn't even use the <strong></strong> tag. Just use the:
Code:
#ddblueblockmenu li a{
display: block;
padding: 3px 0;
padding-left: 9px;
width: 169px; /*185px minus all left/right paddings and margins*/
text-decoration: none;
color: white;
background-color: #2175bc;
border-bottom: 1px solid #90bade;
border-left: 7px solid #1958b7;
font-weight:bold;
}
In the stylesheet (addition red).
Also, you shouldn't have this in your stylesheet:
Code:
</style>
[if IE]>
<style type="text/css">
p.iepara{ /*Conditional CSS- For IE (inc IE7), create 1em spacing between menu and paragraph that follows*/
padding-top: 1em;
}
</style>
<![endif]
But, it may be doing something good in some strange way - probably not.
Bookmarks