Remove background from pages & posts

Discussion in 'Themia WordPress Theme' started by vitamilla, Nov 10, 2014.

  1. vitamilla

    vitamilla Guest

    Joined:
    Jun 11, 2014
    Messages:
    12
    Likes Received:
    0
    Hello

    I can't seem to find out how to remove the background from the pages and posts in the Themia pro theme.

    You can find the site at www.okonomiibalance.dk. I'm referring to the background "box" with lines across.

    Thanks,
    C
     
  2. Yogesh

    Yogesh Guest

    Joined:
    Aug 8, 2014
    Messages:
    2,052
    Likes Received:
    41
    Hello,

    Paste the code given below in Custom CSS section
    (Appearance -> Theme Options -> Styling Options -> Custom CSS) of your dashboard.
    Code:
    .testimonial_bg {
    background: none;
    }
    It will resolve your issue.

    Thanks & Regards
    Yogesh Bhade
     
  3. vitamilla

    vitamilla Guest

    Joined:
    Jun 11, 2014
    Messages:
    12
    Likes Received:
    0
    Hi again. I wasn't thinking about the testimonial background, but the background on pages.

    Also, is it possible to align an image to the right in the testimonial?
     
  4. Yogesh

    Yogesh Guest

    Joined:
    Aug 8, 2014
    Messages:
    2,052
    Likes Received:
    41
    Hello,

    Paste the code given below in Custom CSS section
    (Appearance -> Theme Options -> Styling Options -> Custom CSS) of your dashboard.
    Code:
    blockquote img {
    float: right;
    }
    We didn't find any background in your page/post but you can hide border around page/post by applying following CSS code in Custom CSS.
    Code:
    .fullwidth {
    background: none;
    border: none;
    }
    It will resolve your issue.

    Thanks & Regards
    Yogesh Bhade
     
  5. vitamilla

    vitamilla Guest

    Joined:
    Jun 11, 2014
    Messages:
    12
    Likes Received:
    0
    Thanks, that worked for pages. The image in the block quote still isn't aligned to the right, any idea what I'm doing wrong?
     
  6. Yogesh

    Yogesh Guest

    Joined:
    Aug 8, 2014
    Messages:
    2,052
    Likes Received:
    41
    Hello,

    Paste the code given below in Custom CSS section
    (Appearance -> Theme Options -> Styling Options -> Custom CSS) of your dashboard.
    Code:
    blockquote img {
    float: right;
    }
    It will resolve your issue.

    Thanks & Regards
    Yogesh Bhade
     
  7. vitamilla

    vitamilla Guest

    Joined:
    Jun 11, 2014
    Messages:
    12
    Likes Received:
    0
    Unfortunately, the image is still to the left... What am I doing wrong?
     
  8. Yogesh

    Yogesh Guest

    Joined:
    Aug 8, 2014
    Messages:
    2,052
    Likes Received:
    41

Share This Page