• Resolved cmeurer

    (@cmeurer)


    I created 2 buttons and inserted them into my website. I have since made edits and the edits save just fine. However, when I refresh my website page, the buttons stay the same. Several revisions later, they will still not update. They remain as they were the initial time they were placed on the page. How can I get my button changes to reflect on my site?

    https://wordpress.org/plugins/maxbuttons/

Viewing 5 replies - 1 through 5 (of 5 total)
  • Plugin Author Bas Schuiling

    (@basszje)

    If I understand correctly, this is a problem with the front-end of the site right?

    Do you have any caching plugins active maybe? That’s usually the reason.

    If not, could you please post a link to the site, or an example page so we can check what’s happening.

    Thread Starter cmeurer

    (@cmeurer)

    No caching plugins (that I know of!) and here is a link to the site:
    http://a15.8d9.myftpupload.com/

    Yes, I’m referring to the front end. The buttons on the Max Button editor page have no shadow offset on the text, it is just plain text. But the page itself still shoes the drop shadow which makes the text hard to read. Strangely, I changed the hover color and that DID update, just not the font shadow.

    Plugin Author Bas Schuiling

    (@basszje)

    Now I understand better. Your theme has the following code in it:

    .et-box-content {
        text-shadow: 1px 1px 1px #ffffff;
    }

    That means that the text shadow is added by the theme, and not by the plugin.

    To fix the problem you should either get rid of that statement in the theme or update with some custom CSS ( your theme probably has some space for that ) .

    Something like :

    .maxbutton { text-shadow: none !important; }

    should do the trick.

    Thread Starter cmeurer

    (@cmeurer)

    Thank you! That did the trick.

    Plugin Author Bas Schuiling

    (@basszje)

    Good! This is resolved then.

Viewing 5 replies - 1 through 5 (of 5 total)
  • The topic ‘Buttons will not update on website’ is closed to new replies.