Zen Cart Logo
Forums / Templates, Stylesheets, Page Layout / Moving sidebox headers off center

Moving sidebox headers off center

Locked

Views: 557

Results 1 to 5 of 5
This thread is locked. New replies are disabled.
9 Nov 2010, 11:02 PM
#1
caroleas avatar

caroleas

Totally Zenned

Join Date:
Feb 2009
Posts:
896
Plugin Contributions:
0

Moving sidebox headers off center

I am tweaking with a test store for new sidebox headers. I like them but i find the titles are centered and cover the little image on the left of the header. I COULD align it right, which would look great BUT that also moves the content of several boxes to the right too.

I tried adding some spaces in the titles but it does not seem to recognise them. Any suggestion? Any way to right align ONLY the header content and NOT the box content? If the header has two words, any way to break them in two lines in the header?

9 Nov 2010, 11:16 PM
#2
kobra avatar

kobra

Black Belt

Join Date:
Aug 2005
Location:
Arizona
Posts:
31,500
Plugin Contributions:
4

Re: Moving sidebox headers off center

Can't see your issue??

Where is your site??

9 Nov 2010, 11:18 PM
#3
caroleas avatar

caroleas

Totally Zenned

Join Date:
Feb 2009
Posts:
896
Plugin Contributions:
0

Re: Moving sidebox headers off center

OOPS.... here is the link for the test store: http://creationcassel.com/storetest

As you can see, the sidebox header has a little flower on the left, but the words can overlap it when it is centered.

9 Nov 2010, 11:23 PM
#4
kobra avatar

kobra

Black Belt

Join Date:
Aug 2005
Location:
Arizona
Posts:
31,500
Plugin Contributions:
4

Re: Moving sidebox headers off center

Find in your stylesheet.css file

h3.leftBoxHeading, h3.leftBoxHeading a,
h3.rightBoxHeading, h3.rightBoxHeading a {
	font-size: 1em;
	color: #ffffff;
	}

Try adding the highlighted entry and see if that helps

h3.leftBoxHeading, h3.leftBoxHeading a,
h3.rightBoxHeading, h3.rightBoxHeading a {
        text-align: right;
	font-size: 1em;
	color: #ffffff;
	}
9 Nov 2010, 11:45 PM
#5
caroleas avatar

caroleas

Totally Zenned

Join Date:
Feb 2009
Posts:
896
Plugin Contributions:
0

Re: Moving sidebox headers off center

Thanks ... it works fine now.