Viewing 3 posts - 1 through 3 (of 3 total)
  • Author
    Posts
  • #48579
    Matt
    Member

    How can I change the spacing between the top of the text in the ‘Promotion area’ and the top slider?

    Also – how can I change this box to be one area, instead of broken into multiple parts?
    {I want to have a centered text}

    Loving the theme and thanks for your help!

    #48587
    Sakin
    Keymaster

    @Matt: The spaces in Promotion are top and bottom is controlled through padding-top and padding-bottom, so you can adjust the padding as per your need in the following css and then add it in “Appearance => Theme Options => Custom CSS” box:

    #homepage-message {
        padding-top: 30px;
        padding-bottom: 30px;
    }

    To make the promotion area, one column and text align center, you can add the following css in “Appearance => Theme Options => Custom CSS” box:

    #homepage-message .left-section,
    #homepage-message .right-section {
        text-align: center;
        width: 100%;
    }
    #homepage-message .right-section a {
        display: inline-block;
    }
    #48601
    Matt
    Member

    perfect – thanks!

Viewing 3 posts - 1 through 3 (of 3 total)
  • The topic ‘Promotion area – top spacing, and centering’ is closed to new replies.