• Hi,

    Can someone tell me how/where can I find out the exact font style and color of the text in my post ?

    https://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,

Viewing 8 replies - 1 through 8 (of 8 total)
  • 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: https://www.w3schools.com/CSS/CSS_reference.asp

    color:#555;
    font-family:Verdana,Georgia,Sans-Serif;
    font-size:11px;

    MAC ??

    Thread Starter c_student

    (@c_student)

    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;
    }

    Thread Starter c_student

    (@c_student)

    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 ??

    Thread Starter c_student

    (@c_student)

    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 ?

    https://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 ??

    Thread Starter c_student

    (@c_student)

    Thanks MAC !
    Much Appreciated.

Viewing 8 replies - 1 through 8 (of 8 total)
  • The topic ‘Exact font style and color’ is closed to new replies.