Tagged: x
-
AuthorPosts
-
July 2, 2016 at 8:32 am #1069593
Hi
How do I remove border and padding around post featured image on blog page and post page? I also get a blue “border” below the image which I can’t get rid of?
Kind regards,
JonasJuly 2, 2016 at 8:37 am #1069596Hi there,
Please add the following CSS:
.entry-featured { border: none; padding: 0; }
Hope it helps.
July 4, 2016 at 3:48 am #1071213Thank you! I was able to remove the grey border and the padding but there is still a blue line below the image that appears on some screen sizes as I resize the browser window. Is there a way for me to prevent that from showing as well?
Kind regards,
JonasJuly 4, 2016 at 3:59 am #1071225Hi Jonas,
Kindly change the code to this.
body .entry-featured { border: 0; padding: 0; }
If that doesn’t help, please provide us your site url so we can take a closer look.
July 6, 2016 at 4:07 am #1074402This reply has been marked as private.July 6, 2016 at 5:15 am #1074476Hi Jonas,
Try adding the following CSS under Customizer > Custom > Edit Global CSS:
a:focus, a.x-btn:focus, select:focus, input[type="file"]:focus, input[type="radio"]:focus, input[type="submit"]:focus, input[type="checkbox"]:focus, input[type="button"]:focus { outline: none !important; }
Hope it helps.
-
AuthorPosts