Page 1 of 1

Removing Title from header image

Posted: Mon Nov 10, 2008 5:13 pm
by hubber
I am placing a header image on my blog, and do not want the Title to be showing on the image, which is what is happening.

Could someone tell me where in the style.css to place "margin-left: -2000px;" in order to move the text off my header?

I am using MT3-Gettysburg

Thanks
Hub

Posted: Mon Nov 10, 2008 5:17 pm
by Don Chambers
homelink1 is the title of your blog, homelink2 is the description.

Code: Select all

a.homelink1,
a.homelink1:hover,
a.homelink1:link,
a.homelink1:visited,
#serendipity_banner h1 {
  text-decoration: none;
  color: white;
  font-size: xx-large;
}

a.homelink2,
a.homelink2:hover,
a.homelink2:link,
a.homelink2:visited,
#serendipity_banner h2 {
  font-size: x-large;
  text-decoration: none;
  color: white;
  font-size: small;
}

Posted: Mon Nov 10, 2008 7:19 pm
by hubber
That worked, thanks Don