Viewing 4 replies - 1 through 4 (of 4 total)
  • if you can access to style.css file of your theme (by ftp or using themes/editor in admin menu), in the line 1057 you’ll find this

    .entry img, img.single-post-thm {
    	padding: 3px;
    	border: 2px solid #eee;
    }

    Just edit and replace with:

    .entry img, img.single-post-thm {
    	padding: 3px;
    	border: 2px solid #eee;
    }

    It should remove that ugly grey border

    Andrew Nevins

    (@anevins)

    WCLDN 2018 Contributor | Volunteer support

    @aritzalvarez, Why bother editing the theme’s files when you just have to redo your modifications every time the theme updates?

    @jenbenn, If you don’t have a section of the dashboard named, “Custom CSS Manager”, “Custom CSS” or “Edit CSS” and you want to make a CSS change, install this Custom CSS Manager plugin. Then use its section of the dashboard to hold your new CSS styles:

    .entry img,
    img.single-post-thm {
     border: 0;
    }

    That’s a great solution… I didn’t knew that plug!

    By the way, i made a mistake… Obviously… I forget edit the code to replace jajajajaja the correct code is Adrew said

    .entry img,
    img.single-post-thm {
     border: 0;
    }

    My fault xD

    Thread Starter jenbenn

    (@jenbenn)

    Thanks for this! I am such a newbie, I need all the help I can get 🙂

Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘How can I remove the grey border around this hover image’ is closed to new replies.