Hi,
I´m having som problems with this theme and I hope I can get some support.
The problem is the headline, where the blog name is.
When I visits my site with Firefox it works okay, but when I use Internet Explorer it shows another character style on the text.
Is there any way to replace that with an image or is there some other solution?
I visited your site "mg12" and you didn´t have that problem.
Please help / Gobble
unixgolf
Member
Posted 3 years ago #
Who are you talking to?? Who/what ismg12?
If you want help, please form a cohesive sentence and ask your question again?
@unixgolf,
you are new, that's why you don't know that if you go the Extend > Themes or Plugins and you start a "comment" there... you will end up posting here (without a warning).
That's what happened above.
I don´t understand, am I in the wrong forum?
Moved to Themes and Templates since this is a theme related question.
There are simple steps to replace your title with an image.
1. You can find a file named title.psd in title_psd directory. Open your Photoshop and edit it as your headline image.
2. Open style.css file, find 'image blog title'.
-- FORM --
#title a {
text-decoration:none;
color:#FFF;
width:250px;
height:30px;
display:block;
font-family:"Trajan Pro";
letter-spacing:0;
}
/* image blog title */
/*
#title a {
background:url(img/title.gif) no-repeat;
text-decoration:none;
color:#FFF;
width:250px;
height:30px;
text-indent:-999em;
display:block;
}
*/
-- TO --
/*
#title a {
text-decoration:none;
color:#FFF;
width:250px;
height:30px;
display:block;
font-family:"Trajan Pro";
letter-spacing:0;
}
*/
/* image blog title */
#title a {
background:url(img/title.gif) no-repeat;
text-decoration:none;
color:#FFF;
width:250px;
height:30px;
text-indent:-999em;
display:block;
}