Theme Sorbet.Color changing

  • Unknown's avatar

    Good evening,
    How can I change the color of the black line? http://naturgebloggt.com/

    thanks for help,
    Thomas

    The blog I need help with is naturgebloggt.com.

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

  • Unknown's avatar

    Hi Thomas, assuming you mean the dark band at the top of your site, I used the web inspector in my browser to determine that the background color was set in .site-header. The CSS to change that would be this.

    .site-header {
    background: #242d36;
    }

    If you also wish to change the color of the dark band at the bottom of your site, this would be the CSS.

    .site-footer {
    background: #242d36;
    }

    If you are not yet familiar with the web inspector tool in your browser, take a look at our support document on How to Find Your Theme’s CSS, which has some brief screencasts to get you started using it. It makes working with CSS much easier.

  • Unknown's avatar

    thanks your your help. I embeded the code and now it is much better but there is still a smal black line left (take a look http://www.naturgebloggt.com). But now I got two other questions. 1. How can I delete the small black lines, 2. how can I change the color of the “older Posts” Button below the last post at the bottom and 3. how canI change the color of the Headline “Naturgebloggt” from white in to an other color. Last but not least, how can I change the Size of the headline?

    Greetings,
    Thomas

  • Unknown's avatar

    in addition to 1.: Hoc can I change the color of the small black line?

  • Unknown's avatar

    Oops, it they have a pesky border. Change what I gave above to this

    .site-header {
    background: #f2f4d5;
    border: none;
    }
    .site-footer {
    background: #f2f4d5;
    border: none;
    }

    For the older posts button, add this and edit (I included a text color declaration as well since you might want to change that too)
    #infinite-handle span {
    background: #f2f4d5;
    color: #ffffff;
    }`
    For the site title color and size, add this and edit.

    .site-title a, .site-title a:visited {
        color: #ffffff;
    }
    .site-title {
        font-size: 1.27778em;
    }
  • Unknown's avatar

    thx again, you did a great job. fantastic. pls allow me on elast question: How can I change the size of the text under the title (Naturschutz-weil’s wichtig ist)?

  • Unknown's avatar

    By the way, it is possible to implement an arrow which appears after scrollong down and brings me automatically back to the top of the blog (like this one http://www.naturgeblogt.de)?

  • Unknown's avatar

    Hi, I see you have gotten the site description text changed with the following CSS.

    h2.site-description {
        font-size: 1.8em;
    }

    For a return to top, what about it in your footer menu? You can try it with the code you have in the text widget in your sidebar.

  • Unknown's avatar

    How can I write the code snippet in the footer menu?

  • Unknown's avatar

    Create a Custom Link in your footer menu and use this as the URL and label it “Back to top” or whatever you wish to name it.
    http://naturgebloggt.com/#

  • The topic ‘Theme Sorbet.Color changing’ is closed to new replies.