-
AuthorPosts
-
April 17, 2014 at 10:15 am #34388
Hi!
Can you provide me with a CSS to remove the dotted underline from my links? I want them all away, so I can link some images without those appearing.
Thanks!
April 17, 2014 at 6:15 pm #34577Hi Francisco,
Thank you for posting in! Could you give us a url address we can check? Depending how it looks, we may give you different css.
Thank you.
April 21, 2014 at 11:35 am #35577Sure thing!
My site is http://www.cienciaencien.com/ and the underlines appear on the “crรฉdito de la imagen” below the post main image, and also under the share service icons… I would like non of them to have a dotted (nor any) underline.
Thank you for your support!
๐
Francisco.
April 21, 2014 at 10:39 pm #35755Hi Francisco!
Thank you for the link.
You can add this on Customizer > Custom > CSS to remove the dotted line below the text:
.format-standard .entry-content a:not(.x-btn):not(.x-img-thumbnail) { border-bottom: none; }
I hope that helps.
April 22, 2014 at 3:21 pm #36058Like a charm!
Thank you very much!!!
Kind regards.
April 23, 2014 at 5:34 am #36249You’re welcome Francisco.
April 23, 2014 at 4:59 pm #36450๐
April 24, 2014 at 2:59 am #36657๐
March 31, 2016 at 11:47 am #861087Hello, can you help me understand how to remove the underline from text links, and add back a coloured dotted line on hover?
Thanks!
March 31, 2016 at 9:32 pm #861827Hi There,
Thanks for writing in! To assist you with this issue, we’ll first need you to provide us with exact URL where you want this to implement. This is to ensure that we can provide you with a tailored answer to your situation. Once you have provided us with your URL, we will be happy to assist you with everything.
Always,
XApril 1, 2016 at 1:16 am #862104This reply has been marked as private.April 1, 2016 at 1:19 am #862108This reply has been marked as private.April 1, 2016 at 4:32 am #862307Hi,
You can add this under Custom > CSS in the Customizer.
/* add dotted line to links in main content */ body .x-main a { border-bottom: 1px dotted #ff433f; } /* remove text shadow */ body .x-btn { text-shadow:none !important; }
Hope that helps.
April 1, 2016 at 5:31 am #862371Hi I added that code and it works a treat, however I do not want the underline to appear on buttons and other elements, only text based links.
Can you show me how to exclude the underline from buttons etc please?
Thanks
alistairApril 1, 2016 at 3:00 pm #863023Hi there,
You can add this under Custom > CSS in the Customizer.
.x-btn { border-bottom: medium none !important; } .x-btn:hover { border-bottom: medium none !important; }
Hope that helps.
-
AuthorPosts