Change Blog Font Color in Roadfighter

Discussion in 'RoadFighter WordPress Theme' started by rogerschnur, Nov 15, 2013.

  1. rogerschnur

    rogerschnur Member

    Joined:
    Mar 19, 2013
    Messages:
    216
    Likes Received:
    14
    I tried this but no luck:

    .content-bar .post .post_title a {
    color: 586F7F!;
    }
     
  2. rogerschnur

    rogerschnur Member

    Joined:
    Mar 19, 2013
    Messages:
    216
    Likes Received:
    14
    I want the Blog Title to have new color
     
  3. rogerschnur

    rogerschnur Member

    Joined:
    Mar 19, 2013
    Messages:
    216
    Likes Received:
    14
    One additional related request please, I would like the "Read More" images in the three featured boxes to be the same as the one in the top slider. Please advise. Click here for the website
     
  4. Gourav

    Gourav Support Staff

    Joined:
    Oct 19, 2012
    Messages:
    7,728
    Likes Received:
    207
    Hello,

    1.For your first issue

    go to js > custom.js present in your theme directory and remove the code given below

    Code:
    //Cufon replacement
    Cufon.replace('h1')('h1:hover')('h2')('h3')('h4')('h5')('h6');
    
    Now,


    Paste this code in Custom CSS
    Appearance > Theme Option > Styling Option > Custom CSS

    Code:
    .content-bar .post .post_title a{
    color:red;
    }
    2.For your second issue

    Paste this code in Custom CSS
    Appearance > Theme Option > Styling Option > Custom CSS
    Code:
    .feature-content .feature-content-inner:hover .feature-content-text a.read-more, .feature-content .feature-content-inner .feature-content-text a.read-more{
    background: url(http://premierriskmgt.com/wp-content/themes/roadfightertheme/css/color/images/slider-readmore-lightblue.png) left center no-repeat;
    color:#fff;
    width: 123px;
    height: 32px;
    display: inline-block;
    position: absolute;
    left: -9px;
    bottom: 6%;
    }
    .feature-content .feature-content-inner {
    position: relative;
    }
    .feature-content{
    padding-left: 7px;
    }
    
     
  5. rogerschnur

    rogerschnur Member

    Joined:
    Mar 19, 2013
    Messages:
    216
    Likes Received:
    14
  6. rogerschnur

    rogerschnur Member

    Joined:
    Mar 19, 2013
    Messages:
    216
    Likes Received:
    14
    Blog title color didn't work.
     
  7. Gourav

    Gourav Support Staff

    Joined:
    Oct 19, 2012
    Messages:
    7,728
    Likes Received:
    207
    Hello,

    1.For your first issue

    Paste this code in Custom CSS
    Appearance > Theme Option > Styling Option > Custom CSS

    Code:
    .feature-content .feature-content-inner:hover .feature-content-text a.read-more, .feature-content .feature-content-inner .feature-content-text a.read-more {
    background: url(http://premierriskmgt.com/wp-content/themes/roadfightertheme/css/color/images/slider-readmore-lightblue.png) left center no-repeat!important;
    }
    2.For your second issue

    We have checked your website and it seems that you have not removed the cufon code from the theme, remove cufon code from the theme, it will works fine.

    Also check the link for reference

    http://www.inkthemes.com/how-to-edit-internal-files-through-ftp/07/
     

Share This Page