1 rocketdude Jul 28, 2007 19:22
3 afwas Jul 29, 2007 12:44
Somewhere in your css file it reads:
h1#pageTitle{
..
..
}
Between these brackets { add this line:
visibility: hidden;
You can do the same with
div.pageSubTitle{
..
..
visibility: hidden;
}
I wasn't able to look in your specific css file, so it might look slightly different, but the keywords are #pageTitle and .pageSubTitle.
And yes, I should go for the css solution for the image.
Good luck
4 rocketdude Jul 29, 2007 16:11
Afwas,
Thank you! Your suggestions fixed the problem.
Cheers,
Rocketdude
I can answer #1. It would be better to remove what you added from _main.php (the <img src part) and just use the stylesheet background: url(img/banner.jpg) code.
One solution for problem #2 would be to edit your _main.php and change the title tag to look something like this:
That should do the trick.