• Resolved TheMadi

    (@themadi)


    Hi there,
    Love the simplicity of your plug-in for buttons but I’m having an issue with the text color. It seems that the color is coming somewhere from my theme. It’s not the foreground color that shows in the preview.

    Can you suggest where I might look either in my style.css or other file to look for the default color? OR can you tell me what additional code I need to add to the shortcode to change the color?

    You can see the button at http://www.techtosuccess.com/start-here/

    Thanks so much!

    http://wordpress.org/plugins/epic-bootstrap-buttons/

Viewing 2 replies - 1 through 2 (of 2 total)
  • Thread Starter TheMadi

    (@themadi)

    Did a little poking around… the color is coming from the definition of my link colors. Here:
    /* ——————-[ Links ]——————- */

    a, a:link, a:visited {
    outline:none;
    text-decoration:none;
    color:#ff2266;
    -moz-transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    }

    Your suggestions for how I can update or add the necessary CSS just for the buttons would be appreciated.

    Plugin Author Mike Stott

    (@mikemayhem3030)

    Hi

    Glad you like the plugin, please rate it 5* and leave a review 🙂

    Add something like:-

    a.btn{
    outline:none;
    text-decoration:none;
    color:black !important;
    -moz-transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    }
Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Foreground color problem’ is closed to new replies.