I have a child theme, with just “header.php” , “footer.php”, “style.css” and “functions.php”. all the rest is inherited from father theme (sydney vanilla).
]]>https://snipboard.io/ZFaHWm.jpg
THANKS
]]>However, it wipes out all bold, underlining and italics.
In addition, where there’s a “Read more…” at the end of the excerpts, it shows a broken character where the ellipsis should be.
]]>One thing I want to do is to change the default behaviour when you interact with URL links. I’d like to make all links without any link underlining until you hover your mouse over a link, when the underline then appears. So this would be a global setting for the entire site.
I’ve found it challenging to identify which code to modify. Even using CSS Hero, I struggled. Clearly I’ve not succeeded yet as the code I have added to the CSS in Customizer doesn’t work. Here’s the code:
{
a:link {text-decoration:none}
a:visited {text-decoration:none}
a:hover {text-decoration:underline}
a:active {text-decoration:none}
}
Would anyone point me in the right direction to a solution? Thanks.
]]>a:link { text-decoration: none; }
a:visited { text-decoration: none; }
a:hover { text-decoration: underline; }
a:active { text-decoration: underline; }
How can I remove the underlines that were added to content links per WordPress accessibility requirements in the latest OceanWP theme update (*2020.12.16.* – 2.0.1)? I use an OceanWP child theme, but the recent theme update added an underline and dotted hover underline to every hyperlink on my site.
Note: I need to remove the underline and dotted hover underline from ALL the hyperlinks on my site.
In Appearance > Customize > Custom CSS/JS, I’ve tried the following CSS:
a {
border: none;
text-decoration: none;}
a:focus {
border: none;
text-decoration: none;}
Note: I also tried {border: 0;}
for both a and a:focus.
Nothing is working. I’d greatly appreciate any assistance you can provide.
My site URL: [ redundant link removed ]
]]>Hi,
The text-decoration-thickness property is not recognized by the TablePress CSS: TablePress automatically deletes this CSS property.
Even adding a <span style> in the boxes of the table, this property does not work. Is it an oversight or is it voluntary due to recognition problems in some browsers?
By conscience, I still tried with the old property text-decoration-width (the old name of text-decoration-thickness), it does not work either.
How to work around this problem?
Is it possible to send a CSS file via FTP with this property inside? I tried to put it in “style.css” of my child theme but it doesn’t work.
Thanks
______________________________________________________________
FRENCH
Bonjour,
La propriété text-decoration-thickness n’est pas reconnue par le CSS de TablePress: TablePress efface automatiquement cette propriété CSS.
Même en ajoutant un <span style> dans les cases du tableau, cette propriété ne fonctionne pas. Est-ce que c’est un oubli ou est-ce que c’est volontaire à cause de problèmes de reconnaissance chez certains navigateurs?
Par acquit de conscience, j’ai quand même essayé avec la vieille propriété text-decoration-width (l’ancien nom de text-decoration-thickness), ?a ne fonctionne pas non plus.
Comment contourner ce problème?
Est-il possible d’envoyer un fichier CSS par FTP avec cette propriété à l’intérieur? J’ai essayé de la placer dans “style.css” de mon thème enfant mais ?a ne fonctionne pas.
Merci.
I want to deactivate the text-decoration:underline when my buttons are showing up.
They should still be clickable and linking to a page, but without underlining the titles of the buttons.