Shape 5

Joomla Templates => Hexicon Gamer - Club => : wilson camacho September 07, 2012, 12:50:47 AM



: changing subtext font color
: wilson camacho September 07, 2012, 12:50:47 AM
where can i change the font color of the subtext as you can see the color is dark silver and i would like to change it to black

i was on the s5 flex menu.css but i could not find it . Also can i  remove the shadow of the submenu basically when you  go to charity the and move the cursor down to the submenus you can see a rectangle shadow ?

http://www.sandungatv.org/index.php


: Re: changing subtext font color
: pmiddleton September 07, 2012, 05:17:11 AM
Hi Wilson

The site is starting to look great!

To change the font color in s5_flex)menu.css at line 298, add the color property thus -

.S5_subtext {
  color: #000000;
  cursor: pointer;
  font-size: 0.8em;
  padding-top: 2px;
}

The shadow is set at line 72 -

#subMenusContainer div.s5_sub_wrap ul, #subMenusContainer div.s5_sub_wrap_rtl ul {
  -moz-border-bottom-colors: none;
  -moz-border-left-colors: none;
  -moz-border-right-colors: none;
  -moz-border-top-colors: none;
  background: -moz-linear-gradient(center bottom , #0D0D0D 0%, #101010 34px) repeat scroll 0 0 transparent;
  border-color: -moz-use-text-color #0D0D0D #0D0D0D;
  border-image: none;
  border-radius: 0 0 8px 8px;
  border-style: none solid solid;
  border-width: medium 1px 1px;
  box-shadow: 6px 6px 6px rgba(0, 0, 0, 0.3);
  padding-bottom: 3px;
}

Comment out, or delete, the box-shadow: property. Having done that, you may also want to comment out the border-style: and background: properties, also. Try it and you'll see.


: Re: changing subtext font color
: wilson camacho September 07, 2012, 08:46:40 AM
Perfect!!!


thank you


: Re: changing subtext font color
: pmiddleton September 10, 2012, 09:29:32 AM
You're welcome, as always ;)