Tagged: ,

Viewing 12 posts - 1 through 12 (of 12 total)
  • Author
    Posts
  • #1371044

    Hi,
    Enfold 5.2.1
    With the 6.1 WP update, footer and links are underlined without setting changes.
    Even if I add the following CSS code:

    #footer #socket #widgets a {
    text-decoration: none;
    color: #ffffff;
    }

    How to return to the previous settings for these links?. It’s less pretty since the update.
    Best regards.

    #1371046

    Hi,
    I am facing the same problem :-( I found this inline CSS:

    
    a:where(:not(.wp-element-button)) {
     text-decoration:underline;
    }
    

    Regards,
    Bernd

    #1371089

    Hi,

    Please try this in Quick CSS:

    a:where(:not(.wp-element-button)) {
        text-decoration: none;
    }

    Best regards,
    Rikard

    #1371101

    It works, problem solved
    Thank you Rikard!
    Best regards.

    #1371118

    Hi,

    Great, I’m glad that we could help. I’m not sure if this is a general problem yet though, since I couldn’t reproduce it on a test installation. If it should be a general problem, then we’ll correct it in the next version of the theme.

    Best regards,
    Rikard

    #1371194

    Hi Rikard,
    Unfortunately the css-snippet isn’t a useful solution for us. Because we have much more than 100 client-websites with Enfold. And we’re facing this issue on many of this websites since the last WordPress update.

    It seems, that the css-snippet

    a:where(:not(.wp-element-button)) {
     text-decoration:underline;
    }

    is placed inline by one of the javascripts. But I don’t know exactly from which JS and why.

    Regards,
    Bernd

    • This reply was modified 1 year, 8 months ago by Bernd.
    • This reply was modified 1 year, 8 months ago by Bernd.
    #1371203

    Hi Bernd,

    The inline style is added by WordPress (specifically Gutenberg).
    You can see it mentioned here: https://github.com/WordPress/gutenberg/issues/37071

    Best regards,
    Nikko

    #1371205

    Hi Nikko,
    Thanks, but we use the Advanced Layout Editor from Enfold on our sites, not Gutenberg.
    Regards,
    Bernd

    #1371243

    Hi everyone,
    I found this other topic to this issue: https://kriesi.at/support/topic/wordpress-6-1-css-fixes/ :-)
    For me it’s ok, if this issue will be solved in the next Enfold Update. This topic can be closed.
    Regards,
    Bernd

    #1371246

    Hi Bernd,

    CSS added in WP 6.1 targets all links that does not have “wp-element-button” class. So please add following code to bottom of Quick CSS field in Enfold theme options > General Styling

    
    a:where(:not(.wp-element-button)) {
        text-decoration: none;
    }
    

    Best regards,
    Yigit

    #1371250

    Hi Yigit,
    As I already wrote, it’s ok for me, to wait for the next Enfold Update. Because I have more than 150 websites with Enfold…
    Regards,
    Bernd

    #1371254

    Hi Bernd,

    My bad, I did not see your last post before I posted mine :)

    Thank you for your patience!

    Regards,
    Yigit

Viewing 12 posts - 1 through 12 (of 12 total)
  • You must be logged in to reply to this topic.