View Single Post
  #8  
Old 12-21-2008, 04:24 PM
  ARW VISIONS's Avatar 
ARW VISIONS ARW VISIONS is offline
 

X-Man
  
Join Date: Jan 2007
Location: Pensacola, FL
Posts: 2,536
 

Default Re: quick question about welcome message alignment

MAKE A BACKUP!!!

open the skin1.css in the skin1 folder.

I usually make a comment at the top called custom styles to kep them separate from the original styles.

you can make a comment like this.

/*
Custom styles
*/

to make a custom class use this

.customClass{
color:#66000;
fontweight:bold;
line-height:1.5em;
}

to call the class use this <div class="customClass">my content</div>


- this an have any name that is not already used in the style sheet. Classes can be used repeatedly in the .tpl files.

to make a custom ID use this

#customId{
color:#66000;
fontweight:bold;
line-height:1.5em;
}

to call the class use this <div id="customClass">my content</div>
- id should only be used once per page so use them sparingly.

hope this helps
__________________
xcart 5.1.2
Reply With Quote