• Resolved mwerk

    (@mwerk)


    Hi – love the price table plugin very much.
    May be simple, but I failed to figure out the css you use.

    Specifically I like to change the color of the teh different options and the color of the button text. If you could give me an example how to achieve this woud be great.

    Thanks,

    Markus

    http://wordpress.org/plugins/mtphr-shortcodes/

Viewing 3 replies - 1 through 3 (of 3 total)
  • Plugin Author metaphorcreations

    (@metaphorcreations)

    Here are some samples that may help you out:

    .mtphr-pricing-table-values p {
      color: #FFFF00;
    }
    .mtphr-pricing-table-button a {
      color: #FF0000;
    }

    You may need to use extra targeting depending on the css of your theme. Many times themes have colors set on div IDs that end up overriding simplified selectors above. If you have something like this in your css:

    #main p {
      color; #00FF00;
    }

    You will most likely need to setup your css like:

    #main .mtphr-pricing-table-values p {
      color: #FFFF00;
    }
    #main .mtphr-pricing-table-button a {
      color: #FF0000;
    }

    In order to get the new styles to override what you currently have.

    Thread Starter mwerk

    (@mwerk)

    Thanks much – much appreciated

    Plugin Author metaphorcreations

    (@metaphorcreations)

    Marking as resolved.

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Colors’ is closed to new replies.