• Forum
  • FAQ
  • Docs
Notice: In order to post a support question you have to have an account and be logged in.
Register  or  Login
  1. Hi there,

    I'm relatively new to WP and have just bought and installed the Corporate scheme.

    I would like to alter the default blue text in the scheme. How do I go about doing that?

    Thanks
    Nicky

    nhs99v
    1 year ago
  2. Hi Nicky,
    in wordpress theme stylesheet (style.css file) you need to change all colors to the desired ones.
    To change the blue text in slider you need to change color in this code:

    .slide-title span {
    color: #79D7FF;
    }
    

    To change the blue color in slider tabs:

    .ui-tabs-nav a span b {
    font-weight: normal;
    color: #79D7FF;
    }
    

    To change links blue color you need to change this code:

    .blogmenu a, .navigation .widget a {
    color: #25A0CC;
    }
    
    a {
    color: #25A0CC;
    text-decoration: none;
    }
    

    To change sidebar links color:

    .left-menu a {
    color: #25A0CC;
    display: block;
    padding: 0 0 0 17px;
    min-height: 38px;
    line-height: 38px;
    border-bottom: 1px solid #E4E4E6;
    }
    

    To change video link text color:
    .btn-video {
    display: block;
    background: url(images/btn-watch-video.gif) no-repeat;
    width: 154px;
    padding-right: 30px;
    height: 30px;
    line-height: 30px;
    color: #79D7FF;
    text-align: center;
    font-family: "MergeRegular-1", "MergeRegular-2", Arial, sans-serif;
    font-size: 16px;
    margin: 5px auto;
    }
    

    To change the h2, h3 blue color:

    .horizontal-box h2, .horizontal-box h3, .vertical-box h2, .vertical-box h3, .white-box h2, .white-box2 h2 {
    color: #25A0CC;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 18px;
    }
    

    For portfolio page titles:

    .content .gallery h2 a {
    color: #25A0CC;
    }
    

    Let me know if I missed something.

    Cheers,
    Max.

    Max
    1 year ago
  3. .ui-tabs-nav a span b {
    font-weight: normal;
    color: #79D7FF;
    }

    does not exist in my css stylesheet. I am trying to change the blue to 757b4f.

    IvanApfel
    1 year ago
  4. Hi,
    this code in located in ui.tabs.css file located in css folder.

    Cheers,
    Max.

    Max
    1 year ago
  5. So I have to go into the css folder via FTP directory and change it there? Or can it be done through the wordpress editor?

    IvanApfel
    1 year ago
  6. Hi,
    you can do this from wordpress editor only in case if you would add this code in style,css file:

    .ui-tabs-nav a span b {
    font-weight: normal;
    color: COLOR_HERE!important;
    }
    

    Cheers,
    Max.

    Max
    1 year ago
  7. OK, added that code….added the color I wanted……and….nothing. Still blue :(

    IvanApfel
    1 year ago
  8. Hi,
    You used wrong code:

    .ui-tabs-nav a span b {
    font-weight: normal;
    color: 757b4f;
    }
    

    but should be:
    .ui-tabs-nav a span b {
    font-weight: normal;
    color: #757b4f!important;
    }
    

    Now the color is changed.
    Cheers,
    Max.

    Max
    1 year ago

Add Reply

You must log in to post.

 

Add a new topic!

Chances are your issue is already answered, but if it’s not, you can always create a new topic.

Add new topic

Search forums

Searching for something specific? Type something and press Enter to search.