- Posts: 43
- Thank you received: 0
Setting the main color and font doesn't work
-
orish
Inactive member - Topic Author
- Member
Less
More
12 years 6 months ago #20123
by orish
Setting the main color and font doesn't work was created by orish
In the style designer tab of the blankie template manager, I've tried to change the color and font family of the paragraph text.
But whatever I change it to doesn't seem to have any effect.
The color and font still seem to be the same as before.
Please see www.abetterlifeThailand.com . I've set the font to Trebuchet MS and the color to black (#000000), but the font definitely isn't Trebuchet (I don't know what it is) and the text still looks grey, not black.
Even when I select a color in the editor (e.g. navy), the color when published seems a lot lighter. And when I select a different font, it still displays the site-wide font.
How do I fix this?
Thanks
But whatever I change it to doesn't seem to have any effect.
The color and font still seem to be the same as before.
Please see www.abetterlifeThailand.com . I've set the font to Trebuchet MS and the color to black (#000000), but the font definitely isn't Trebuchet (I don't know what it is) and the text still looks grey, not black.
Even when I select a color in the editor (e.g. navy), the color when published seems a lot lighter. And when I select a different font, it still displays the site-wide font.
How do I fix this?
Thanks
Please Log in to join the conversation.
-
ivan.milic
Support Staff - Moderator
Less
More
- Posts: 14116
- Thank you received: 1639
12 years 6 months ago #20134
by ivan.milic
Replied by ivan.milic on topic Setting the main color and font doesn't work
in template_css.css
body {
font-family: 'Lato', sans-serif;
font-weight: 300;
line-height: 24px;
}
light color is because font-weight: 300;
you can simply add
p{
...your styles for p ...
}
after that
body {
font-family: 'Lato', sans-serif;
font-weight: 300;
line-height: 24px;
}
light color is because font-weight: 300;
you can simply add
p{
...your styles for p ...
}
after that
Please Log in to join the conversation.
-
orish
Inactive member - Topic Author
- Member
Less
More
- Posts: 43
- Thank you received: 0
12 years 6 months ago #20140
by orish
Replied by orish on topic Setting the main color and font doesn't work
nope, sorry - that didn't change anything. I even tried changing the color, but it's still set to gray.
Am I changing the right file?
public_html/blankie_template/hot_blankie/css/template_css.css
body {
margin:0;
padding:0;
font-family: 'Georgia';
font-weight:normal;
color:#000000;
line-height:24px;
}
p {
margin:0;
padding:0;
font-family: 'Trebuchet MS';
font-weight:normal;
color:#000000;
line-height:24px;
}
Am I changing the right file?
public_html/blankie_template/hot_blankie/css/template_css.css
body {
margin:0;
padding:0;
font-family: 'Georgia';
font-weight:normal;
color:#000000;
line-height:24px;
}
p {
margin:0;
padding:0;
font-family: 'Trebuchet MS';
font-weight:normal;
color:#000000;
line-height:24px;
}
Please Log in to join the conversation.
-
orish
Inactive member - Topic Author
- Member
Less
More
- Posts: 43
- Thank you received: 0
12 years 6 months ago #20141
by orish
Replied by orish on topic Setting the main color and font doesn't work
Oops, I edited the wrong file. I found another css file with the same name in public_html/templates/hot_blankie/css/
So which file is the template manager modifying?
So which file is the template manager modifying?
Please Log in to join the conversation.
-
ivan.milic
Support Staff - Moderator
Less
More
- Posts: 14116
- Thank you received: 1639
12 years 6 months ago #20149
by ivan.milic
Replied by ivan.milic on topic Setting the main color and font doesn't work
Template manager is modifying template_css.css
add !important flag:
p {
margin:0!important;
padding:0!important;
font-family: 'Trebuchet MS'!important;
font-weight:normal!important;
color:#000000!important;
line-height:24px!important;
}
add !important flag:
p {
margin:0!important;
padding:0!important;
font-family: 'Trebuchet MS'!important;
font-weight:normal!important;
color:#000000!important;
line-height:24px!important;
}
Please Log in to join the conversation.
-
orish
Inactive member - Topic Author
- Member
Less
More
- Posts: 43
- Thank you received: 0
12 years 6 months ago #20154
by orish
Replied by orish on topic Setting the main color and font doesn't work
Thanks, I'll try that.
But I've noticed that the template manager modifies template_css.css in public_html/blankie_template/hot_blankie/css/ but the active file seems to be in public_html/templates/hot_blankie/css/
But I've noticed that the template manager modifies template_css.css in public_html/blankie_template/hot_blankie/css/ but the active file seems to be in public_html/templates/hot_blankie/css/
Please Log in to join the conversation.
Time to create page: 0.177 seconds