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
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
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;
}
.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.
.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.
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?
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.
Hi,
You used wrong code:
.ui-tabs-nav a span b {
font-weight: normal;
color: 757b4f;
}
.ui-tabs-nav a span b {
font-weight: normal;
color: #757b4f!important;
}
Chances are your issue is already answered, but if it’s not, you can always create a new topic.
Add new topicSearching for something specific? Type something and press Enter to search.
Add Reply
You must log in to post.