Hello
Thank you for the great theme. I like it very much.
The only things i want to change are the colour of the blue font and the font family for the page site name.

I'm a newbie in css and html. Can somebody give me the code for locale.css
to change the colour of the font and the font family?

Thank you very much.

As

Comments

danpros’s picture

Hi As,

The css for that are:

.logo-name {
display: inline; 
font-weight: bold;
font-size: 25px;
padding-left: 15px;
position: relative;
font-family: Verdana, Tahoma;
font-style: italic;
}

.logo-text {
display: inline;                       
font-weight: bold;
position: relative;
padding-left: 10px;
font-family: Verdana, Tahoma;
}

Change the above codes to your liking.

Dan

asphalt’s picture

Hello Dan

Now It works, but how can I change the colour of links? The default Colour for web-links is blue. I want to change it for the hole webpage.

Thx
As

Deepika.chavan’s picture

Hi,
Rename your 'local-sample.css' file to local.css which is there in your theme's directory. If it is not there then you can create one local.css file. (Please do clear cached data) . Try adding following css code in 'local.css' file :
a. To change the color of the links :

a:link {
  color: #FF0099;
}

b. To change the color of the visited links :

a:visited {
  color: #663333;
}

c. To change the color of the links on mouse hover event :

a:hover {
  color: #6600CC;
}

Please change the color values according to your requirement, you can get the values here.

Rgrds,

Deepika Chavan.

danpros’s picture

Status: Active » Closed (fixed)

Solved.

@Deepika.chavan: Thanks :)

Dan