X-Cart: shopping cart software

X-Cart forums (https://forum.x-cart.com/index.php)
-   Changing design (https://forum.x-cart.com/forumdisplay.php?f=51)
-   -   Need To Change Dynamic Menu Title (https://forum.x-cart.com/showthread.php?t=18621)

sharingsunshine 12-12-2005 01:54 PM

Need To Change Dynamic Menu Title
 
Hello,

I have looked thru the forum but haven't found anything close to what I need.

I am using the Categories Menu but I need to make the title all Uppercase, assign CSS and place a table around it. I tried adding CSS but it had no effect.

You can see how the other navigation menus look at
http://theherbsplace.com.whsites.net/shop/home.php

Simply trying to make all the menus look the same.

Here is menu.tpl:

<TABLE border="0" cellpadding="0" cellspacing="0" width="209">
<TR>
<TD class="VertMenuBorder">
<TABLE border="0" cellpadding="3" cellspacing="0" width="209">
<TR>
<TD class="VertMenuTitle">
{$link_begin}[img]{$ImagesDir}/{if $dingbats ne ''}{$dingbats}{else}spacer.gif{/if}[/img]{$link_end}
{if $link_href}

I added this css

<span class="heading">{$menu_title}</span>

{else}
<FONT class="VertMenuBoxNewsTitle">{$menu_title}</FONT>
{/if}
</TD>
</TR>
<TR>
<TD class="temp_body_bold">
<TABLE border="0" cellpadding="3" cellspacing="0" width="209">
<TR>
<TD>{$menu_content}
</TD></TR>
</TABLE>
</TD></TR>
</TABLE>
</TD></TR>
</TABLE>


Thanks

Randal

balinor 12-12-2005 02:03 PM

to make it all caps, you need to edit the actual language variable in 'Languages'. The title is already formatted via VertMenuTitle, no need to add another class to it.

Stephen Hatton 12-12-2005 02:50 PM

Hi SharingSunshine

In your /skin1/skin1.css put in the following line:


Code:

.VertMenuTitle, .VertMenuBoxNewsTitle
{ text-transform: capitalize }


You can also add it to /skin1/skin1_admin.css.

That will capitalise your menu headings.

Regards
Ing. Stephen Hatton
:idea:

sharingsunshine 12-13-2005 07:19 AM

That was a great help. Thanks alot.


All times are GMT -8. The time now is 11:18 AM.

Powered by vBulletin Version 3.5.4
Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.