Quote:
Originally Posted by neroag
you could create a new class in your css file, making the changes you want.
.VertMenuTitle2 {
BACKGROUND-COLOR: #081589; COLOR: #ffffff; FONT-WEIGHT: bold; FONT-SIZE: 10px;
}
then change the class="VertMenuTitle2" in the files you want to change styles in.
|
Hi,
so far I understand but I don't know where apply in code.
look:
in home.tpl I have "{include file="help.tpl"}"
help.tpl looks
{* $Id: help.tpl,v 1.19 2004/06/04 12:52:38 svowl Exp $ *}
{capture name=menu}
{if $usertype ne "C"}<A href="help.php?section=contactus&mode=update" class="VertMenuItems">{$lng.lbl_contact_us}</A><BR>{/if}
{if $usertype eq "C"}<IMG src="{$ImagesDir}/customer_images/vert_menu_bullet.gif" width="27" height="16" border="0">{/if}<A href="help.php?section=business" class="VertMenuItems">{$lng.lbl_privacy_statement} </A><BR>
{if $usertype eq "C"}<IMG src="{$ImagesDir}/customer_images/vert_menu_bullet.gif" width="27" height="16" border="0">{/if}<A href="help.php?section=conditions" class="VertMenuItems">{$lng.lbl_terms_n_conditions }</A><BR>
{if $usertype eq "C" and $login eq ""}{if $usertype eq "C"}<IMG src="{$ImagesDir}/customer_images/vert_menu_bullet.gif" width="27" height="16" border="0">{/if}<A href="help.php?section=Password_Recovery" class="VertMenuItems">{$lng.lbl_recover_password}< /A><BR>{/if}
{*{include file="pages_menu.tpl"}*}
{/capture}
{ include file="menu.tpl" dingbats="dingbats_help.gif" menu_title=$lng.lbl_help menu_content=$smarty.capture.menu link_href="help.php" hide_bullets=1 hide_border="Y"}
where to insert my new class ?
maximer