Styling option for Home Page

Discussion in 'Slice WordPress Theme' started by jschettini, Oct 23, 2012.

  1. jschettini

    jschettini New Member

    Joined:
    Oct 19, 2012
    Messages:
    2
    Likes Received:
    0
    I want to extend the "Home Page Bottom Section Heading" sot hat my txt will fit in the ribbon box. How can I do this?
     
  2. jschettini

    jschettini New Member

    Joined:
    Oct 19, 2012
    Messages:
    2
    Likes Received:
    0
    also, How do I center my background image?
     
  3. Harmeet

    Harmeet Support Staff

    Joined:
    Oct 19, 2012
    Messages:
    360
    Likes Received:
    15
    Hello,

    The ribbon is the image below the slider, you can't add more text outside the ribbon, it won't look great. And you can make the background image stretched which will show in the entire page.
    Put the following code in custom css

    Appearance -> theme options -> styling options -> custom css
    Code:
    html {
        background: url(images/bg.jpg) no-repeat center center fixed;
        -webkit-background-size: cover;
        -moz-background-size: cover;
        -o-background-size: cover;
        background-size: cover;
    }
    Add the address of your image
    This will solve your problem.

    Thanks.
     

Share This Page