Viewing 6 replies - 1 through 6 (of 6 total)
  • Looks like this is the CSS:

    .shadow_light, .alignnone, .alignleft, .alignright, .aligncenter {
        background: none repeat scroll 0% 0% #E6E6E6;
        padding: 4px 5px 5px 4px;
        border-width: 1px;
        border-style: solid;
        border-color: #DADADA #FFF #FFF #DADADA;
        -moz-border-top-colors: none;
        -moz-border-right-colors: none;
        -moz-border-bottom-colors: none;
        -moz-border-left-colors: none;
        border-image: none;
        position: relative;
    }

    If you override at least the .alignleft style in your child’s style.css:

    .alignleft {
        padding: 0px;
        border-width: 0px;
    }

    That will remove the border around those images.

    Thread Starter imageplusphotography

    (@imageplusphotography)

    Which CSS file are you looking at? Is it Style.css?
    Do you know the line number?

    Thread Starter imageplusphotography

    (@imageplusphotography)

    I’m confused, I have the stylesheet STYLE.CSS open, but I can not find anywhere in it that contains that code you pasted in. I appreciate your help immensely!

    Andrew Nevins

    (@anevins)

    WCLDN 2018 Contributor | Volunteer support

    What he’s saying is, put this in your Child Theme style.css file:

    .alignleft {
        padding: 0px;
        border-width: 0px;
    }

    Thread Starter imageplusphotography

    (@imageplusphotography)

    You will have to forgive my ignorance – Although pretty tech savy, I do not know what you mean by my Child Theme Style.css
    I have one file called style.css
    Inside that is 2,777 lines of code. What am i missing?

    Thread Starter imageplusphotography

    (@imageplusphotography)

    Nevermind – I got it! Thank you!

Viewing 6 replies - 1 through 6 (of 6 total)
  • The topic ‘Removing Borders from Pictures (or .Jpgs)’ is closed to new replies.