Hi, I am using the Josefin font and would like to ask if there is a way to make it darker and still show the selected text even darker or a different colour?
Thanks in advance.
Andrew
Hi, I am using the Josefin font and would like to ask if there is a way to make it darker and still show the selected text even darker or a different colour?
Thanks in advance.
Andrew
The colors of the headlines are controlled via css - open style1/2/3.css and search for "h1", "h2", "h3", etc.
The Dude
Thanks for that advice.
What about the font used in general posts and pages, as I just want to make it look slightly darker or is it a case of choosing a different font?
Andrew
Hey,
The font is defined in /style.css and can be found around line 30:
body {
font-family:Arial,Helevtica,Verdana,san-serif;
font-size:13px;
line-height:23px;
}
The colour is defined in /css/style1/2/3.css and looks like this (for style1.css):
body {
color:#777777;
}
Change it to:
body {
color:#000000;
}
to make the text black.
James
I have tried all the directions in here, and I edited all 3 css sheets and changed the color from 777 to 343434 and it is not changing for me.
I finally got it to change, but I had to go into my hosting and do a live code edit on style sheet 1. It worked.
For some reason my edited versions I uploaded did not seem to work.
Glad that you solved the problem :)
You must log in to post.