Viewing 12 replies - 1 through 12 (of 12 total)
  • Edit style.css and change:

    #pagetitle h1.logo {
    color:#EEEADB;
    float:left;
    font-family:"Arial Black",Arial,Helvetica,Sans,FreeSans,Jamrul,Garuda,Kalimati;
    font-size:500%;
    font-variant:small-caps;
    font-weight:normal;
    letter-spacing:-0.1em;
    margin:0;
    padding:0.1em 0 0;
    }

    to

    #pagetitle h1.logo {
    color:#EEEADB;
    float:left;
    font-family:"Arial Black",Arial,Helvetica,Sans,FreeSans,Jamrul,Garuda,Kalimati;
    font-size:500%;
    font-variant:small-caps;
    font-weight:normal;
    letter-spacing:-0.1em;
    margin:-60px 0 0;
    padding:0.1em 0 0;
    }
    Thread Starter spenceri

    (@spenceri)

    Thank you so much! Would you be able to tell me how to make the description “Mitt Romney for President 2012” to the top of the header as well? I tried to figure it out but I don’t want to screw things up.

    Also, what would be the code if I wanted to change the page title font to black?

    Thank you so much,

    Spencer

    You haven’t got a lot of room at the top of the header but you could move the tagline up a little by changing:

    #pagetitle h4 {
    border-left:1px solid #8E7762;
    color:#E9E2C9;
    float:right;
    padding:0.6em 0 0.6em 0.8em;
    }

    to

    #pagetitle h4 {
    border-left:1px solid #8E7762;
    color:#E9E2C9;
    float:right;
    margin-top:-25px;
    padding:0.6em 0 0.6em 0.8em;
    }

    in style.css

    what would be the code if I wanted to change the page title font to black?

    It’s already black.

    .post h3 a, .post h2 a {
    color:#000000;
    text-decoration:none;
    }

    #000000 is the hexadecimal code for “black”.

    Thread Starter spenceri

    (@spenceri)

    You’ve been a big help and I apologize for abusing you! One more question. What is the code for the color “Gray”?

    Do you also know how I can get my navigation bar lower? Like to the bottom of the header?

    Thread Starter spenceri

    (@spenceri)

    Or is there a code for making the header title automatically turn white with a dark backround? If you look at the header you will see what I mean: https://thecompetentconservative.com

    background-color: #000;
    color: #fff;

    should do the trick, but you should remove the a:hover from the logo.

    For gray, try: #111; for almost black to #eee; almost white.

    Peter

    Thread Starter spenceri

    (@spenceri)

    I am wondering if there is a code to that makes the title automatically change white if there is a black backround and black if there is a white backround. So basically, the left side of the title would be black and the left side, above Romney’s head, would be white.

    Do you know if there is one?

    Not using CSS. Its not dynamic. You’d need javascript for something like that.

    Thread Starter spenceri

    (@spenceri)

    That’s for the heads up on that. The color needs to be different than black, and I am thinking Red. Do you know the code for the color Red?

    As well as light grey?

    Thread Starter spenceri

    (@spenceri)

    To clarify above, the title needs to be a different color than black.

    color: red;

    or

    color: #ff0000;

    Peter

    Thread Starter spenceri

    (@spenceri)

    Thank you very much!

Viewing 12 replies - 1 through 12 (of 12 total)
  • The topic ‘Move Header Font Higher’ is closed to new replies.