• Having a difficult time locating the code to my title in my style.css sheet. The title is autofind, and I cant find the tagline either. I am trying to change the font style and color. Thank you!

Viewing 4 replies - 1 through 4 (of 4 total)
  • Thread Starter presh22

    (@presh22)

    Here is the website, sorry I forgot to include it previously:

    http://www.autofindvb.com

    This is probably the one you are looking for — it’s internal CSS code — line 60 of your page head section

    #site-title a, #site-description {
        color: #E7782E !important;
    }

    Or see
    style.css line 509

    #site-title {
        margin-right: 270px;
        padding: 3.65625em 0 0;
    }

    style.css line 525:

    #site-description {
        color: #7A7A7A;
        font-size: 14px;
        margin: 0 270px 3.65625em 0;
    }

    Having CSS in many places is probably causing your confusion about styles and Firebug… You’d be well-served to put all the CSS in the external stylesheet.

    Thread Starter presh22

    (@presh22)

    WPyogi,

    You are always helping me out. The first bit of coding is the one I am looking for, but cannot find it in my style sheet. You are saying it is in “page head” section? I am all over the board. Would that be the same place to change the font as well?

    color: #E7782E this is what I am trying to change the color of, but just cant find it.

    What is the external stylesheet?

    External stylesheets are separate files like style.css. Internal CSS styles are in the head section of the html page between style tags. Inline CSS styles are inside html tags for the element they are styling. In this case, I don’t know where that code is coming from, but you should be able to see it in the html editor — it’s above the actual page content. Or you can view it in Firefox by going to Tools -> Web Developer -> Page Source (or Command U) on a Mac (not sure what the Windows version is but it’s surely close to that.

    You’ll have to look at the header.php file or maybe a plug-in to see what’s creating the code there. Or if you put it there, just cut and paste to the external stylesheet.

    Hope that helps…

Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘Where Can I find the Code to the Title of My site?’ is closed to new replies.