c_student
Member
Posted 2 years ago #
Hi,
Can someone tell me how/where can I find out the exact font style and color of the text in my post ?
http://calicutstudents.in/?p=1319
I think it might be in the style.css file, but am not sure how to figure it out. Not an expert on style sheets -:(
Thanks in advance !
Please feel free to let me know if my question is not clear..
Regards,
dtiger2k
Member
Posted 2 years ago #
Your test is in the .post class in your css. You can change it by adding font tags to this class. In case you need a CSS reference W3Schools has a good site here: http://www.w3schools.com/CSS/CSS_reference.asp
color:#555;
font-family:Verdana,Georgia,Sans-Serif;
font-size:11px;
MAC :)
c_student
Member
Posted 2 years ago #
Thank you both !
I believe I can now see the class in style.css
body
{
margin-top: 46px;
padding: 0;
color: #A1A1A1;
background-repeat: repeat-x;
background-position: top left;
background-color: #001456;
background-image: url(images/bg.jpg);
font-family: Verdana, Georgia, Sans-Serif;
font-size: 11px;
line-height: 18px;
}
c_student
Member
Posted 2 years ago #
oops...I still am not sure if I did it right, I was trying to set the font and color of the Google ads same as the content format....
from the style.css file what I figured out (based on help from you experts above) is that the color is A1A1A1 , right ?
I set the ads font to Verdana and size medium with color A1A1A1...
but the ads looks lighter than the conent of the page ?
any ideas as to what I might be doing wrong ?
is that the color is A1A1A1 , right ?
No.
#A1A1A1 is the color you defined for the body, but later you defined a new color #555555 for the wrapper wich “is nearer” to your post text, so this is the color you should use, as I’ve said in my previous post.
MAC :)
c_student
Member
Posted 2 years ago #
Thanks, that is much better, I was not able to follow what you mentioned earlier cause I tried 555 instead of 555555 -:( My bad !
changed and now looks great !
one more question if I may....
where in the css file did u see the 555555 color please ?
http://calicutstudents.in/wp-content/themes/Bluesky/style.css
is it #wrapper ? or is it
#pages li.active a
{
color: #555555;
background-color: #ffffff;
}
#555 is shorthand for #555555 you can use either one.
The color is being defined on style.css line 152 #wrapper
Glad to be of help.
MAC :)
c_student
Member
Posted 2 years ago #
Thanks MAC !
Much Appreciated.