Forums / Customization from the Admin / Hide Store Name in the Header

Hide Store Name in the Header

Locked
Results 1 to 6 of 6
This thread is locked. New replies are disabled.
07 Apr 2008, 20:31
#1
utopiko avatar

utopiko

New Zenner

Join Date:
Apr 2008
Posts:
34
Plugin Contributions:
0

Hide Store Name in the Header

Hi, it's a simple thing wich i can't figure out :S
I've replace the header-bg.jpg with my own, and i wan't to
hide the Store Name over my image...
I'v found where to delete the 'Tag line here', but not the store name...

Any help ?

Thanks :D
07 Apr 2008, 22:14
#2
dbltoe avatar

dbltoe

Totally Zenned

Join Date:
Jan 2004
Posts:
9,707
Plugin Contributions:
6

Re: Hide Store Name in the Header

Are you talking about the link?
Can we see what you're talking about?
08 Apr 2008, 01:42
#3
utopiko avatar

utopiko

New Zenner

Join Date:
Apr 2008
Posts:
34
Plugin Contributions:
0

Re: Hide Store Name in the Header

Yeah. Exactly.

You can see that there's white line over the text VELVET MOUSTACHE.

ACtually it's my store name "Velvet Moustache's Boutique" that has a white font color that appear over my header-bg.jpg...

I just want to remove it so it doesn't overlap with my image...
08 Apr 2008, 08:44
#4
dbltoe avatar

dbltoe

Totally Zenned

Join Date:
Jan 2004
Posts:
9,707
Plugin Contributions:
6

Re: Hide Store Name in the Header

That would be in english.php

Also, you have the logoWrapper showing up twice so it looks like you may have messed with that file as well.
09 Apr 2008, 18:23
#5
utopiko avatar

utopiko

New Zenner

Join Date:
Apr 2008
Posts:
34
Plugin Contributions:
0

Re: Hide Store Name in the Header

thanks for responding.
I'Ve check in english.php but not quite sure what i have to do there.
And i don't understand the thing about logoWrapper...as i don't even know to what it's relating to..

Thank you for your help!
09 Apr 2008, 18:58
#6
dbltoe avatar

dbltoe

Totally Zenned

Join Date:
Jan 2004
Posts:
9,707
Plugin Contributions:
6

Re: Hide Store Name in the Header

I'm afraid I went way back in time on the english.php file and it IS NOT where you would need to go to change this.
The file that may be doing both things badly is the tpl_header.php file. It should be in the common directory of your custom template. Line #70 establishes the logoWrapper. Line #71 puts the link and the logo onto the page.
<div id="logo"><?php echo '<a href="' . HTTP_SERVER . DIR_WS_CATALOG . '">' . zen_image($template->get_template_dir(HEADER_LOGO_IMAGE, DIR_WS_TEMPLATE, $current_page_base,'images'). '/' . HEADER_LOGO_IMAGE, HEADER_ALT_TEXT) . '</a>'; ?></div>

You might be able to do away with the logo altogether since you are not using anything in it. That would be done in the stylesheet where it says #logo around line #79. Change it to
#logo {display: none}
However, you still have the logoWrapper showing up twice in the page source. You will need to find where that is happening.