Viewing 4 replies - 1 through 4 (of 4 total)
  • Plugin Author John Gardner

    (@jgardner03)

    custom colors are very possible… whether you find it easy or not depends on your comfort level with CSS. How familiar are you with editing CSS?

    Thread Starter ramonjosegn

    (@ramonjosegn)

    I have intermediate level for the edition, thansk

    Plugin Author John Gardner

    (@jgardner03)

    ok, so let’s say I had a custom color I wanted to use called “aquamarine”. It’s hex value was #2cdac8 and I wanted to use a text color of black (#000). My shortcode would look like this:

    [box color="aquamarine"]
    My box content here
    [/box]

    Then all I’d have to do would be to add the following styles to my styles.css file

    .arconix-box-aquamarine {
        background-color: #2cdac8;
        color: #000;
    }
    .arconix-box-aquamarine a {
        color: #000;
    }

    All you have to do is name the color and provide hex codes for the color itself and the text color you want to use with it. Make sense?

    Thread Starter ramonjosegn

    (@ramonjosegn)

    Yes, ok, thanks I am testing now

Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘Custom colors it is possbile?’ is closed to new replies.