• Resolved laskowv

    (@laskowv)


    I want to change the button width in /wp-content/plugins/wpdm-button-templates/buttons.css from 250px to 340px. I have been able to do this in the actual file, but I want to add it to my theme’s css.

    I have tried adding the .link-btn { width: 340px } to the theme css, but it is not working. Do I have to prefix it with something else?

    https://www.ads-software.com/plugins/download-manager/

Viewing 3 replies - 1 through 3 (of 3 total)
  • Plugin Contributor Shahriar Alam

    (@shahriar0822)

    Try .w3eden .link-btn{width:340px;}

    Thread Starter laskowv

    (@laskowv)

    Thanks, but that did not work. The php code seems to hard code it to look at the button.css only.

    function enqueue_style(){
            wp_enqueue_style("wpdm-button-templates",plugins_url("wpdm-button-templates/buttons.css"));
        }

    Using firebug, it jumps right to the button.css after reading the div classes of w3eden.

    Plugin Contributor Shahriar Alam

    (@shahriar0822)

    Then try this,

    .w3eden .link-btn {
        width: 340px !important;
    }

    This will work.

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Button Templates Width – Free version’ is closed to new replies.