• I have noticed on my Home page that ALL links have reverted to Default Typography styling.
    I try to edit these links, and they momentarily change to how I would like them.
    But when I view the page, they once again revert to Default Link Typography.

    This only occurs on Links, not text in paragraphs or headings.
    If I remove the hyperlink from the text, the styling then changes to how I would like it, and remains that way.

    This has occurred in the last 24 hours.

    I have tried playing around with deactivating various plugins, clearing cache etc.
    No difference made.

    Any help hugely appreciated, many thanks.
    Ian

    The page I need help with: [log in to see the link]

Viewing 4 replies - 1 through 4 (of 4 total)
  • They have changed the order of Elementor CSS files load. This results in styles

    .elementor-heading-title>a {
        color: inherit;
        font-size: inherit;

    to load later than ‘site-wide’ link styles. Where as before that piece of code was loading on the very top and that made your Elementor settings for wrapping element that had the link inside to overwrite default link styles.

    Solution:
    On all elements containing links where you see wrong styles go to Advanced -> Custom CSS and put in this code:

     body .elementor-heading-title>a {
        color: inherit;
        font-size: inherit;
        font-family: inherit;
        font-weight: inherit;
    }

    This should solve the issue for you and all of us.

    Actually! Just putting this code somewhere in header fixed it all for me!

    Thread Starter b4zman

    (@b4zman)

    @lenchezzz wow thank you so much!
    I can’t for the life of me understand coding, so this is such a huge help!

    I popped this into a snippet plugin I use (keeps all the complicated things I don’t understand relatively organised haha) and it seemed to do the job, so thanks again!

    The letter spacing / line height is a little off, and I tried adding a little CSS in there, but didn’t seem to work. To be honest that’s the least of my worries, so if it can’t be changed no worries! ??

    Thread Starter b4zman

    (@b4zman)

    @lenchezzz

    Scrap that, I think it might be my imagination re. the spacing, I can’t tell haha, but thanks again!

Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘Elementor Created Links – Will Not Change From Default Typography’ is closed to new replies.