Help in Css to remove picture from template and change layout

  • Unknown's avatar

    Hi All,
    I’m new here so be patient with me.
    Recently I just purchase an upgrade to use the customisation tools on the Lovebirds template for my blog, however, I have 2 issues.

    1 – On the sidebar of my blog, there is a green swirl and I wonder if it’s possible to have it remove… I don’t know if it will work by CSS or other. Also if it can’t be removed, can I change it to black?

    2 – On the body of my blog, there is like a light pink border. Is there a code I could use to change the border to another colour instead of the current light pink?

    Thanks a lot in advance for your help.
    Kind regards,
    Gischie

    The blog I need help with is: (visible only to logged in users)

  • Unknown's avatar

    Hi there,

    1 – This CSS removes the green swirl:

    .vines {
    	display: none;
    }

    2 – The current CSS that sets the light pink border is this:

    .hentry {
        border-color: rgba( 232, 217, 208, 0.2 );
    }

    You can use your own rgba value to change the color. Here’s a good rgba color generator: http://www.css3maker.com/css-3-rgba.html

  • Unknown's avatar

    In case I wasn’t being clear, for #2, you will need to add your own CSS like this:

    .hentry {
        border-color: rgba( 232, 217, 208, 0.2 );
    }

    In the Custom CSS box, but with your own rgba value.

  • Unknown's avatar

    Thank you so much for your help, will try that out :)

  • The topic ‘Help in Css to remove picture from template and change layout’ is closed to new replies.