Mandarke
Member
Posted 2 years ago #
I've installed this site for a local charity. In the latest edition of firefox and explorer everything appears fine. However, in previous editions the image-based banner is obscured by the default H1 text across the top that I had removed using CSS (by making it transparent).
I expect this is a clumsy way of doing things, but I couldn't work out how to remove the writing without removing the whole div-tag itself.
Any suggestions? Perhaps through editing the theme directly?
Cheers!
look in your theme's header.php for a line similar to:
<h1 id="header"><a href="<?php bloginfo('url'); ?>/"><?php bloginfo('name'); ?></a></h1>
and remove it
back up 1st
Mandarke
Member
Posted 2 years ago #
Hi, unfortunately when I do that, the whole header disappears? Any other apporaches along these lines - just need to remove the default h1 text in the banner... many thanks!
Style.css:
#header_left h1 a {
border-bottom:2px none #000000;
padding:0 10px 9px;
position:absolute;
top:-5000px;
left:-5000px;
}
Mandarke
Member
Posted 2 years ago #
I actually just set the font size to 0 and it worked perfectly. Many thanks!