font color change

can you tell me which string i need to change for color of font on the attached file.

1 answer

Profile photo of thangnn1510 0.00 $tone December 20, 2010
Public

Dear Johnpark!

If you’re developing your site, I suggest you should user firebug (an addon for firefox) to find where to change in css and js file. I use it too and it works pretty well.

Regarding your question, where to change font for texts:

-- Open skin/frontend/default/jm_natris/css/theme.css

-- For Account link: find and change around line 345:

HTML Code:

.shop-access a:hover, .shop-access a:active, .shop-access a:focus {
  color: #555555;
  text-decoration: underline;
}

-- For menu items: open skin/frontend/default/jm_natris/css/menu.css then change around line 57:

HTML Code:

#nav a {
  color: #A6A4A3;
  display: block;
  float: left;
  font-weight: bold;
  line-height: normal;
  margin: 0;
  padding: 17px 20px;
  text-decoration: none;
}

-- footer items (Home, forums…): Add this code to the end of skin/frontend/default/jm_natris/css/theme.css

#ja-botsl .ja-box-center .block-content li a{
/* Your css here */
}

-- Footer title (JM Natris, All platforms…): change around line 780 in skin/frontend/default/jm_natris/css/theme.css:

HTML Code:

#ja-botsl .block .block-title {
  background: none repeat scroll 0 0 transparent;
  border: medium none;
  color: #FFFFFF;
  margin: 0;
  padding: 5px 0;
}

and 788:

HTML Code:

#ja-botsl .block .block-title span.first-word {
  color: #FFFFFF;
}

Hope this helps you.

#1

Please login or Register to Submit Answer

Written By

Comments