1. This website uses cookies. By continuing to use this website you are giving consent to cookies being used.
    For information on cookies and how you can disable them visit our Cookie Usage page.
    Dismiss Notice

CSS Charity Trust template backgroud colours

Discussion in 'Web Development' started by knk, Feb 5, 2010.

  1. knk

    knk New Member

    I'm trying to change the green line located under the tabs to the colour "red" and make it thinner. Can you pls tell me how?
     
  2. ishkey

    ishkey Moderator, Logos, Sports Crests Staff Member Verified Member

    open the style.css file
    look for -
    Code:
    #header ul{
    	background-color:#85a157;  [COLOR="Blue"]<-- green in hexadecimal   change to background-color:red; [/COLOR]
    	width:711px;
    	border: 3px solid #FFFFFF;  <--- white boarder 3px wide
    	display:block;    <----display all 4 sides
    	top:255px;     <--- position from top
    	position:absolute;
    	margin: 0px 0px 0px 0px;
    	height:22px;                     [COLOR="#0000ff"]<---- Height of green line[/COLOR]
    	padding:5px 0px 0px 0px;    <---- top right bottom left
    	text-align:center;
    }
    Be careful in reducing it's size. There isn't much there to reduce.