There was two slight problems with the html you posted, the code below should fix that, as for the problem with the link not displaying correctly i also found the problem what that, the css code is also below. I almost didn't see the problem because the css file is a total mess, (not due to any fault on your part, it must have been the person who created the template to start with).
You missed a closing div tag and the <a href="#"> doesn't get a closing slash (/), that's what the </a> tag is for. As for the css, the 'color' value was missing the #.
Code: Select all
<div class="blog_bottom"> <div class="right"> <h2>Control Panel</h2> <p>Welcome, <a href="custProfile.php" ><?php echo $_SESSION['uname']; ?></a></p> <ul> <li><a href="#">Philosophy</a></li> <li><a href="#">We love what we do</a></li> <li><a href="#">Content is King</a></li> <li><a href="#">Valid HTML, valid CSS</a></li> <li><a href="#">Team</a></li> <li><a href="#">Jobs</a></li> </ul> <p> </p> <p> </p> </div> </div>
CSS
Code: Select all
.right p a { font-family: Arial, Helvetica, sans-serif; font-size: 11px; font-style: normal; color: #2d98c8; float: none;}
Attached is an image of what the link looks like with the correct color. Hope this helps.