Title Color and Spacing Help in Ideation and Intent

  • Unknown's avatar

    Hi,

    On my blog, I am having trouble putting a space in between the words “in” and “Transition” on the bottom line of my title without breaking the line completely (i inserted the second line using CSS coding)–I feel like this is a very easy fix but haven’t been able to figure it out.

    Also, I inputted a CSS code for the title that is supposed to match our logo completely (#ff7f00), but it is very much not the same color as the orange in the globe next to our title. Please help!

    The blog I need help with is: (visible only to logged in users)

  • Unknown's avatar

    For searching thread while waiting for assistance note this link brings up nothing useful ideationandintent
    However this link Ideation and Intent does produce useful results.

  • Unknown's avatar

    a) you created the problem yourself, when you added this:

    .site-title {
        background: url("http://www.clker.com/cliparts/e/9/n/j/E/o/orange-grey-globe-th.png") no-repeat scroll 0 0 transparent;
        height: 100px;
        margin-right: 20px;
        width: 300px;
    }

    Remove the width rule from this code.

    b) Yes, the orange of your logo is #FF7F00, but you haven’t specified this in your CSS. You’ve added this:

    .site-title a {
        display: block;
        text-indent: 135px;
    }

    Turn it to this:

    .site-title a {
        color: #FF7F00;
        display: block;
        text-indent: 135px;
    }
  • Unknown's avatar

    Thanks so much it worked perfectly–I am a complete novice in CSS obviously (and wordpress in general). How can I get the headings and links to be that color as well?

    Luke

  • Unknown's avatar

    Nevermind, I figured it out! Thanks so much!

  • The topic ‘Title Color and Spacing Help in Ideation and Intent’ is closed to new replies.