Zen Cart Logo
Forums / Templates, Stylesheets, Page Layout / Avignon text is header image

Avignon text is header image

Views: 1,354

Results 1 to 8 of 8
11 May 2012, 12:59 AM
#1
epanagio avatar

epanagio

New Zenner

Join Date:
May 2012
Posts:
18
Plugin Contributions:
0

Avignon text is header image

The image in the header has the name of the company
Attachment 10447
1 - Is there a way to change the font?

2 - Is there a way to change the wording?
Thanks

11 May 2012, 9:43 AM
#2
stevesh avatar

stevesh

Black Belt

Join Date:
Feb 2005
Location:
Lansing, Michigan USA
Posts:
19,793
Plugin Contributions:
2

Re: Avignon text is header image

If it's an image, the only way would be to edit or recreate the image in your image-processing software.

13 May 2012, 1:45 PM
#3
epanagio avatar

epanagio

New Zenner

Join Date:
May 2012
Posts:
18
Plugin Contributions:
0

Re: Avignon text is header image

Sure. But how did it get there? It is definitely something that was places there by the theme and I just want to override it.

stevesh:

If it's an image, the only way would be to edit or recreate the image in your image-processing software.

13 May 2012, 11:36 PM
#4
rstevenson avatar

rstevenson

Totally Zenned

Join Date:
Nov 2006
Location:
Dartmouth, NS Canada
Posts:
2,400
Plugin Contributions:
0

Re: Avignon text is header image

You need the original image file, in its layer version, so you can open it up in Photoshop (or another image editor which can handle layers) so you can type in the words you want instead, and select the font you want instead. Then you save a "flattened" version of the file for use on your site.

If you don't have the version of the image with the layers intact you can't edit the text. Ask the creator of your template for the original file.

Rob

6 Jun 2012, 2:37 PM
#5
epanagio avatar

epanagio

New Zenner

Join Date:
May 2012
Posts:
18
Plugin Contributions:
0

Re: Avignon text is header image

I modified the image but looks like there is text that is being overlapped probably using css. I looked in the css but I couldn't find it. I am using Avignon as the template.

Attachment 10561

Thanks

6 Jun 2012, 2:51 PM
#6
dgent avatar

dgent

Totally Zenned

Join Date:
Nov 2009
Location:
UK
Posts:
1,117
Plugin Contributions:
0

Re: Avignon text is header image

In your style sheet its

.headerTitle h1 {
font-size: 72px;
font-family: Edwardian Script ITC, Monotype Corsiva, Script MT Bold, Freestyle Script, script, cursive, serif;
color:
#923639;
position: relative;
top: -79px;
left: 28px;
display:none;
}

Add display:none; at the bottom as I have above

6 Jun 2012, 2:55 PM
#7
keneso avatar

keneso

Totally Zenned

Join Date:
May 2009
Posts:
1,273
Plugin Contributions:
3

Re: Avignon text is header image

Try loking in the language files, maybe
includes/languages/english/YOUR_AVIGNON_TEMPLATE/header.php

Or maybe your includes/templates/YOUR_AVIGNON_TEMPLATE/common/tpl_header.php

If not in there, use developer tool kit in your admin > tools section and search for:
"R & R Buy and Sell"
or find the file where there is <h1 class="shadow">

You have that text repeated twice

<div id="logoWrapper">
<address style="float:right; text-align:right; margin: 105px 40px 1px 1px; font-weight:bold;">R & R<br />
63 E Main St<br />
Walden, NY 12586</address>
<div class="headerTitle"><h1 class="shadow">R & R Buy and Sell</h1><h1>R & R Buy and Sell</h1></div>
6 Jun 2012, 3:24 PM
#8
epanagio avatar

epanagio

New Zenner

Join Date:
May 2012
Posts:
18
Plugin Contributions:
0

Re: Avignon text is header image

AMAZING support!
The display:none did it and I looking into the second reply to my request.

Thanks, Evan