Removing Title from header image

Skinning and designing Serendipity (CSS, HTML, Smarty)
Post Reply
hubber
Regular
Posts: 30
Joined: Fri Jun 20, 2008 7:01 pm

Removing Title from header image

Post 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
Don Chambers
Regular
Posts: 3657
Joined: Mon Feb 13, 2006 2:40 am
Location: Chicago, IL, USA
Contact:

Post 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;
}
=Don=
hubber
Regular
Posts: 30
Joined: Fri Jun 20, 2008 7:01 pm

Post by hubber »

That worked, thanks Don
Post Reply