Zen Cart Logo
Forums / Templates, Stylesheets, Page Layout / 2 simple questions from CSS noob

2 simple questions from CSS noob

Locked

Views: 921

Results 1 to 4 of 4
This thread is locked. New replies are disabled.
20 Mar 2010, 3:03 PM
#1
pol_uk avatar

pol_uk

New Zenner

Join Date:
Feb 2010
Posts:
5
Plugin Contributions:
0

2 simple questions from CSS noob

Hi all, I would like to center main box (where is wroten WELCOME TO OUR ON LINE SHOP) on my online shop main page. I made some changes and categories pages and product pages are centered, but this only one thing is missing. I've got also quetsion about this box, is an simple way to change notifications it his box depended from language choosen to view page. My online shop adress is https://www.tvparts-online.com Thank in advance. Regards

20 Mar 2010, 9:04 PM
#3
pol_uk avatar

pol_uk

New Zenner

Join Date:
Feb 2010
Posts:
5
Plugin Contributions:
0

Re: 2 simple questions from CSS noob

No m8, it's not that. Still waiting foor some ideas from CSS guys. Regards

26 Mar 2010, 3:12 PM
#4
gjh42 avatar

gjh42

Black Belt

Join Date:
Jul 2005
Location:
Upstate NY
Posts:
21,876
Plugin Contributions:
8

Re: 2 simple questions from CSS noob

Your template is heavily customized to work differently from a standard layout. The template designer wanted the image you refer to on the left. You can change it in stylesheet.css (line 602).dc { display:table-cell; text-align:left; vertical-align:top; width:150%; }Change to```
.dc {
display:table-cell;
text-align:right;
padding-right: 2.0em;
vertical-align:top;
width:150%;
}


Check that the .dc class isn't used somewhere else; if it is, you will need to make a copy of the rule with some specificity to limit the effect of your edit.