Help needed!! Changing the header of website Topic is solved

General project discussion. NOT for help questions.
Post Reply
chema

Help needed!! Changing the header of website

Post by chema »

Hi,

I need to change the header of  a new school website CMSMS: remove cmsms icon and put "Infantile School" in letters, simple. How to it ? I have tried several things using topheader in css stylesheet but it's seems ugly :) I just need write Infantile School with no images, but how. I'm a css beginner  ;)

Thanks

###############################
/*** header ***
we will hide text and replace it with a image
we need to assign a height for it so that the image wont cut off
*/
div#header {
  height: 80px;    /* adjust according your image size */
  background: #385C72;         
}

div#header h1 a {
/* you can set your own image here */
  background: #385C72 url(images/cms/logo1.gif) no-repeat 0 12px;
  display: block;
  height: 80px;            /* adjust according your image size */
  text-indent: -999em;  /* this hides the text */
  text-decoration:none; /* old firefox would have shown underline for the link, this explicitly hides it */
}

####################################
Dee
Power Poster
Power Poster
Posts: 1197
Joined: Sun Mar 19, 2006 8:46 pm

Re: Help needed!! Changing the header of website

Post by Dee »

This thread might help.

Regards,
D
Post Reply

Return to “General Discussion”