Zen Cart Logo
Forums / Templates, Stylesheets, Page Layout / how do i change this

how do i change this

Locked

Views: 957

Results 1 to 10 of 10
This thread is locked. New replies are disabled.
25 Sep 2008, 5:05 AM
#1
ghmedia avatar

ghmedia

New Zenner

Join Date:
Sep 2008
Posts:
9
Plugin Contributions:
0

how do i change this

Here is the link to the site i am working on http://douglablangartist.com/

for some reason at the top the links start on the same line as the banner how do i fix this it just randomly happened it was never like that before what file do i modify i thought it would be on tpl_header but i could not find it

any help s appreciated

25 Sep 2008, 5:25 AM
#2
misty avatar

misty

Inactive

Join Date:
Apr 2004
Location:
UK
Posts:
5,752
Plugin Contributions:
1

Re: how do i change this

i thought it would be on tpl_header
Correct...compare your templates tpl header file with
that of CLASSIC template re positioning

25 Sep 2008, 5:36 AM
#3
canopy avatar

canopy

Totally Zenned

Join Date:
Oct 2006
Posts:
625
Plugin Contributions:
0

Re: how do i change this

If I'm not wrong, your banner image is styled as an inline element and that explains why it is lined up with the Home link when the following HTML is displayed in your store.

<img width="756" height="147" alt="" src="images/finalheader_2.jpg"/>
<a class="navtop1" href="/cart/index.php?main_page=index">Home</a>
```You can try using CSS to style your image as a block element instead of the current inline element. To test this out using an inline CSS style, change the HTML for your image to:

```html
<img width="756" height="147" alt="" src="images/finalheader_2.jpg" style="display:block"/>
```If that works for you, place the CSS style in your external stylesheet.
25 Sep 2008, 5:45 AM
#4
ghmedia avatar

ghmedia

New Zenner

Join Date:
Sep 2008
Posts:
9
Plugin Contributions:
0

Re: how do i change this

that's my problem i cant find that html i don't see it on tpl_header

25 Sep 2008, 5:52 AM
#5
ghmedia avatar

ghmedia

New Zenner

Join Date:
Sep 2008
Posts:
9
Plugin Contributions:
0

Re: how do i change this

OK i found it in upload design data now how i center both the link and and image

25 Sep 2008, 6:08 AM
#6
misty avatar

misty

Inactive

Join Date:
Apr 2004
Location:
UK
Posts:
5,752
Plugin Contributions:
1

Re: how do i change this

Your main header image is 756px wide BUT in stylesheet
you have width of page set as

#mainWrapper {   background: #000000;   text-align: left;   width: 800px;   border: 1px solid #CCCCCC;   }

They should be same

25 Sep 2008, 6:16 AM
#7
ghmedia avatar

ghmedia

New Zenner

Join Date:
Sep 2008
Posts:
9
Plugin Contributions:
0

Re: how do i change this

i think that's how they wanted it im updating a existing site one last thing i need to find out how to remove the the side boxes on the other two pages besides home? how do i find out where the included files are for that. I'm think i just need delete the include in the php? or is there a admin way of doing it like displaying no boxes but on home and products?

25 Sep 2008, 8:37 AM
#9
ghmedia avatar

ghmedia

New Zenner

Join Date:
Sep 2008
Posts:
9
Plugin Contributions:
0

Re: how do i change this

i have tried everything i cant figure out how to jsut remove them off those to pages

any ideals

25 Sep 2008, 9:58 AM
#10
misty avatar

misty

Inactive

Join Date:
Apr 2004
Location:
UK
Posts:
5,752
Plugin Contributions:
1

Re: how do i change this

ghmedia:

i have tried everything i cant figure out how to jsut remove them off those to pages

any ideals
Earlier forum thread quoted in my previous post
explains and gives code for your requirements
:wink: