Editing Journalist Theme – Getting rid of gradient and outlines

  • Hello,
    I have “The Journalist” theme for my blog but I would like to remove the little gray gradient that runs along the top of the blog, as well as the blue outline around all of the pictures. I just got the upgraded Custom Design kit for CSS, but I’m still trying to figure it all out. Could anyone help me out? Thanks!

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

  • The grey and black line at the top is part of the gradient image, but this would be how to get rid of it all.

    body {
    background: none repeat scroll 0 0 #FFFFFF;
    }

    Linked images have the blue border. Non-linked images have a grey border. Did you want to get rid of both?

    This gets rid of the border entirely on linked images.

    .main a img {
    border: medium none;
    }

    This would get rid of the border on all images (linked and non-linked).

    .main a img, .main img {
    border: medium none;
    }
  • This will put a black border at the top of the site.

    body {
    border-top: 10px solid #000000;
    }

    You can change the color or the size as you wish.

  • Oh I see. That is so helpful and great, thank you!

  • The topic ‘Editing Journalist Theme – Getting rid of gradient and outlines’ is closed to new replies.