PDA

View Full Version : CSS Help !!



3guk
24 May 2006, 04:00 AM
Ok heres the score,

I have spent the last few days fixing my forums, making sure everything validates to xhtml transitional at least, especially on the home page.

Anyhow, I have a css related question and was hoping some kind soul could help me out with a slight problem.

http://www.ukslc.org/forum/index.php?action=search

If you look on that page with a fairly big resolution the blue bit, where the Copyright is get too long, I need the table to be 100% purely because it looks better, but I would like the white table inside to also always be stretched to as big as it can go, how can I achieve this ??

Cheers

Wickham
24 May 2006, 08:56 AM
The white div class="contentbox" is as high as it can be. The black band underneath is where the div with the links Contribute, Press Releases and Advertise are.

The problem is that you cannot see these links as the stylesheet code for a:link, a:visited and a:hover are all color: #000000; in other words black on a black background.

Either change these colors or change the color of the div. Near the bottom of your html file code is:-
<div align="right"><a href="http://www.ukslc.org/Contribute.html">Contribute</a> - <a href="http://www.ukslc.org/Press_Releases.html">Press Releases</a> - <a
href="http://www.ukslc.org/Advertise_On_Ukslc.org.html">Advertise</a></div>

Change the first line to say <div align="right" style="background-color: #FFFFFF">...etc. ie white or another color.
------------------
PS I notice you have added class="footer" and added .footer a:link, .footer a:visited color: #25668D; } to the stylesheet.