Backgound picture and text boxes in the page

Discussion in 'ColorWay WordPress Theme' started by hrks, Mar 1, 2013.

  1. hrks

    hrks New Member

    Joined:
    Jun 27, 2012
    Messages:
    7
    Likes Received:
    0
    Hello again.

    I would need your help once again (and probably not for the last time:)).

    1. What dimensions has to be the photo I wish to put as an background image so it dos not duplicate itself when I scroll the page?

    2. Is there a way to put this rounded edge text boxes in the pages? Something like this:


    wts.JPG

    Thank you in advance!
     
  2. Gourav

    Gourav Support Staff

    Joined:
    Oct 19, 2012
    Messages:
    7,728
    Likes Received:
    207
    1.
    There is not fixed dimension for background image, Add image of any dimension the code given below stretched your image.


    Paste this code in Custom CSS
    Appearance > Theme Option > Styling Option > Custom CSS


    Code:
    html, body {
    background: url(Enter your image address) no-repeat center center fixed;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
    }
    
    2.
    Download the Special Text Boxes plugin from WordPress.org

    http://wordpress.org/extend/plugins/wp-special-textboxes/

    This will solve your issue.
     

Share This Page