Hello, I tried to change the header/banner of my site (www.RCcarsFun.com) and I do it successfully but I have a problem. I change the banner but the previous home page link is still appear in front of the banner. How can I remove it? Please go to my site and you will understand the problem and if you are good at wordpress and coding you might be able to help me. Thanks I really appreciate any advise you can give me.
Do you mean to just hide the text links itself? You could have just done this, it should have helped... Find these lines in the CSS file... .logo-name { font-size: 31px; font-family: Tahoma; font-style: normal; font-weight: bold; } .logo-name a { text-decoration: none; color: #DBDBDB !important; } .logo-text { font-size: 22px; font-family: Tahoma; font-style: normal; font-weight: normal; color: #FFFFFF !important; } Code (markup): Change them to this: .logo-name { display:none;} .logo-name a { display:none;} .logo-text { display:none; } Code (markup): That, and OR, if in your header.php file... <!--<h1 id="blog-title"><a href="<?php echo get_settings('home') ?>/" title="<?php bloginfo('name') ?>" rel="home"><?php bloginfo('name') ?></a></h1> <span id="blog-description"><?php bloginfo('description') ?></span>--> Code (markup): With the top suggestions I gave, I'm not really sure which one controls the header logo image, so...it's best to save things before making changes to it. But to just "hide" the header title / description stuff, but keep the header a clickable image, the last thing would work... Well, example like below here: <div id="logo"> <!--<h1 id="blog-title"><a href="<?php echo get_settings('home') ?>/" title="<?php bloginfo('name') ?>" rel="home"><?php bloginfo('name') ?></a></h1> <span id="blog-description"><?php bloginfo('description') ?></span>--> <span><a href="<?php echo get_settings('home'); ?>"><img src="<?php bloginfo('template_directory'); ?>/imgs/site-logo.png" alt="<?php bloginfo('description'); ?>" /></a></span> </div> Code (markup): Of course, your theme doesn't use Divs or whatever, but the same concept of "hiding" will work for your theme.
Well, I actually delete the title and the subtitle from the wordprees admin area as kakil tell me and it works. I want to thanks spencerp and olddocks that tried to help me. I really appreciate it, thanks.