Shape 5

Joomla Templates => Touch of Soul - Club => : jennymac September 07, 2012, 10:29:10 PM



: Touch of Soul main menu above breadcrumbs
: jennymac September 07, 2012, 10:29:10 PM
HI Guys,
I am trying out Touch of Soul for a site and overall I am very pleased with the look, but I do not like the (main) menu above the breadcrumbs. I would like to either delete it altogether, or change the font (don't like all caps) and/or change the colours. Can you point me in the direction of doing one or all of those things? On the demo site there is an image of template positions, but this particular menu is not mentioned.
Many thanks in advance.
Blessings
Jenny
http://www.life1051.org.au/new/


: Re: Touch of Soul main menu above breadcrumbs
: pmiddleton September 10, 2012, 08:48:43 AM
Hi Jenny

You can change the font in templates/touch_of_soul/css/s5_suckerfish.css at line 2, or you can disable the menu completely in the template settings > menu type. Simply change to "no menu".


: Re: Touch of Soul main menu above breadcrumbs
: jennymac November 30, 2012, 10:33:11 PM
Hi Paul,
taken me a while, but I finally got there. I changed the colour; I changed the font from all uppercase to lowercase except the first letter; I removed it - woo hoo! (After all the coding I decided it looked too cluttered so I removed it).
The code I used ( which someone else might find useful) is:
p{text-transform:lowercase;}
p:first-letter{text-transform:uppercase;}
This replaced line 7.

Thanks so much for helping me learn :)
Blessings
Jenny


: Re: Touch of Soul main menu above breadcrumbs
: mikenicoll November 30, 2012, 10:57:53 PM
Hey Jenny,

Thanks for posting the coding. Paul no longer works for Shape5 but he wishes you all the best.

In terms of your coding I would do it this way so it only applies to the main menu.

#s5_navv a {
text-transform: none;}

To change the font you would add something like this:

#s5_navv a {
text-transform: none;
font-family: Arial;}

You can adjust the menu color by changing the background here:

#s5_menu {
    background: url("../images/s5_login_bg.png") repeat-x scroll 0 0 transparent;
    border-left: 1px solid #5B4528;
    border-right: 1px solid #5B4528;
    border-top: 1px solid #5B4528;
    float: right;
    height: 35px;
    padding-left: 13px;
    padding-right: 13px;
    width: auto;
}