 exploreitaly
|
Hi, I have a blog on my site http://www.exploredreamdiscoveritaly.com
In CSS I have set all links to be white throughout the site, but this has also affected my blog, and due to my theme it’s now really hard to see the blog titles and side bar content.
I have read about customizing the font and it’s size and have done this, but I can’t change the color.
Can you help? Thanks
|
 vilniic
|
Hi, I have a similar problem! I have light grey background in my website and dark grey font, but blog are comments are in white font and I cant figure out how to change the colour and also would like to have bigger font for blog comments as people complain about difficulty to read!
in css there is only option to customise blog title! could someone advise how to change comment font size and colour!? Thank you in advance!
|
 Raju Nunna
|
@exploreitaly: See if the article about blog customization helps.
@vilniic: From the “Design” tab, you can change the font color and size of paragraph which will effect every thing in your site. http://weeblyforums.com/2011/08/how-to-edit-paragraph-title-font-size-colour-in-weebly/
|
 exploreitaly
|
Thanks Raju but this article doesn’t help. It tells you everything else about customisation but not about the font colour. Any more ideas would really help.
Thanks, Lisa
|
 ThemePile
|
to change css for blogs you have to use the blog-body class
@exploreitaly
.blog-body a {
color: black;
}
will make your hyperlinks black.
@vilniic – looks like you need
.blogCommentText p {
}
use chrome/firefox and inspect the element you want to change. This will tell you what rules it’s currently using (just in case I’m wrong)…but this worked on mine.
|
 Raju Nunna
|
@exploreitaly:
The article gives you an idea.
Add color to it. Some thing like below. Add the appropriate class.
.blog-title {
color: #ccc;
}
.blog-title-link {
color: #ccc;
}
.blog-title-link a {
color: #ccc;
}
|
 exploreitaly
|
Many thanks both. I’ll give these a try!
|