Can the white text area on a page be transparent so that you only see the background

Discussion in 'Themia WordPress Theme' started by califfx, Apr 4, 2013.

  1. califfx

    califfx Member

    Joined:
    Feb 28, 2013
    Messages:
    34
    Likes Received:
    5
    This is my clients about page: http://cantridenaked.com/site/about/ He really disslikes the white center. Can you make the white text area on a page transparent so that you only see the background? If this is possible how do I then format the text to be white so that it can be seen over the background?
     
  2. Piyush

    Piyush Support Staff

    Joined:
    Dec 8, 2012
    Messages:
    4,745
    Likes Received:
    107
    Hello,
    Paste the following code in your custom css
    Appearance -> Theme Options -> Styling Options -> Custom CSS
    Code:
    .content_wrapper .side_content .post {
    background: none;
    }
    .fullwidth {
    background: none;
    }
    .content_wrapper .side_content .post h1 {
    color: red;
    }
    .post strong {
    color: red;
    }
    .content_wrapper .side_content .post p {
    color: white;
    }
    You can put you color or color code in place of "red".
    This will solve your issue.
     

Share This Page