Banner Pop Up Bar Color

Discussion in 'ColorWay WordPress Theme' started by 1stopnonprofitshop, Apr 5, 2016.

  1. 1stopnonprofitshop

    1stopnonprofitshop Guest

    Joined:
    Jul 18, 2014
    Messages:
    276
    Likes Received:
    0
    Can you charge the color of the bar on the banner pop up? Can you remove the bar all together?

    theme1.1stopnonprofitshop.com
     

    Attached Files:

  2. priya

    priya Guest

    Hello,

    Greetings from InkThemes!

    To change color of the bar, paste the code given below in Custom CSS section (Appearance -> Theme Options -> Styling Options -> Custom CSS) of your dashboard.
    Code:
    .salesdetails {
        border-right: 8px solid red;
    }
    Change color as per the requirement.

    To remove that bar completely, code is given below..
    Code:
    .salesdetails {
        border-right: none;
    }
    Hope it will resolve your issue

    Do let me know if you need more assistance,

    Thanks & Regards!
    Priyanka
    InkThemes.com
     
  3. 1stopnonprofitshop

    1stopnonprofitshop Guest

    Joined:
    Jul 18, 2014
    Messages:
    276
    Likes Received:
    0
    Thanks! Worked great! When changing the bat to another color, how do you code it for a color code instead of selecting a color name, such as red?
     
  4. priya

    priya Guest

    Hello,

    You can simply add color code instead of the name and it should be like..
    Code:
    .salesdetails {
        border-right: 8px solid #FF0000;
    }
    To get color code options, you can go through the below link..

    http://www.rapidtables.com/web/color/html-color-codes.htm

    Hope it will resolve your issue

    Do let me know if you need more assistance,

    Thanks & Regards!
    Priyanka
    InkThemes.com
     

Share This Page