• Closed
  • Kristie Hurlburt
    Spectator
    August 25, 2015 at 2:42 pm #20109

    Hello,

    I’m new to WordPress and this is my first time creating a website. I am almost finished, but I have a few things I can’t figure out.

    1. How do I vertically center the “blog name” in the header? It currently is at the very top of the header.

    2. How do I change the color and font style of the read more buttons? They are currently gray and italics.

    3. I have changed the font weight and style to Normal 400 for the slider description under appearance (Parallax SLider), but it continues to be in italics?

    http://www.sanfordymca.org/develop

    Imran
    Spectator
    Posts: 402
    August 25, 2015 at 5:17 pm #20110

    Hi Kristie,

    Thanks for writing in! As for the vertical alignment of the blog name, you can add the following code under Appearance > Theme Options > Custom Css:

    #logo {
    margin: 52px 20px 0 10px !important;
    }

    In regard to change the font style and the color scheme of read more button text, you can use the CSS code given below into your custom CSS field:

    .entry-content .read-more a {
    font-style: normal !important;
    color: #FF0000! important;
    }

    .read-more {
    text-shadow: 0 1px 0 #FF0000 !important;
    }

    Lastly, to use the normal font style into the description of Parallax Slider, you can insert the following code into your customizer:

    .da-slide p {
    font-style: normal !important;
    }

    Hope this helps!

    Thanks.