How do i get the blue line on the top of my website http://sovereigncapitals.com/ to darkblue like o

Discussion in 'Elite Pro WordPress Theme' started by marlonk84, Nov 26, 2014.

  1. marlonk84

    marlonk84 New Member

    Joined:
    Nov 17, 2014
    Messages:
    28
    Likes Received:
    1
    Hey Guys,

    Yes, it's me once again. :)

    I know i am asking alot of questions but i have no choice, so sorry for that.

    My question:

    How do i get the blue line on the top of my website http://sovereigncapitals.com/ to darkblue like on this website?
     
  2. Yogesh

    Yogesh Guest

    Joined:
    Aug 8, 2014
    Messages:
    2,052
    Likes Received:
    41
    Hello,

    Paste the code given below in Custom CSS section
    (Appearance -> Theme Options -> Styling Options -> Custom CSS) of your dashboard.
    Code:
    .main-container-wrapper {
    border-top: 6px solid blue;
    }
    You can change color/color code in above code.
    It will resolve your issue.

    Thanks & Regards
    Yogesh Bhade
     
  3. marlonk84

    marlonk84 New Member

    Joined:
    Nov 17, 2014
    Messages:
    28
    Likes Received:
    1
    Hi Yogesh,

    I pasted the code in my custom css section like you said and it did change the color of the blue line.

    However, i tried changing the color/color code to more dark blue but had no success.

    Can you please be more specific as to how to change the color?

    Thanks in advance! :)
     
  4. Yogesh

    Yogesh Guest

    Joined:
    Aug 8, 2014
    Messages:
    2,052
    Likes Received:
    41
    Hello,

    Paste the code given below in Custom CSS section
    (Appearance -> Theme Options -> Styling Options -> Custom CSS) of your dashboard.
    Code:
    .main-container-wrapper {
    border-color: blue;
    }
    You can change color/color-code in above code according to use like as given example.
    Code:
    .main-container-wrapper {
    border-color: red;
    }
    Code:
    .main-container-wrapper {
    border-color: #CCCE05;
    }
    Code:
    .main-container-wrapper {
    border-color: #12a3de;
    }
    It will resolve your issue.

    Thanks & Regards
    Yogesh Bhade
     

Share This Page