Change color of Slider font?

Discussion in 'Figero WordPress Theme' started by efcom, Feb 18, 2013.

Thread Status:
Not open for further replies.
  1. efcom

    efcom New Member

    Joined:
    Jan 21, 2013
    Messages:
    16
    Likes Received:
    0
    Hi,
    I nearly finished customizing this nice theme.

    But how can I change the color of the Sliders font (headline, text)?
    I want to change it from white to black.


    Thx.
     
  2. Piyush

    Piyush Support Staff

    Joined:
    Dec 8, 2012
    Messages:
    4,745
    Likes Received:
    107
    Go to js > custom.js present in your theme directory and remove the code given below

    Code:
    //Font Replace
    Cufon.replace('#menu ul li a',{hover: true})('#colRight h2')('.reply',{hover:true})('h1')('h2')('h3')('h4')('h5')('h6');
    Now,
    Paste this code in Custom CSS
    Appearance > Theme Option > Styling Option > Custom CSS


    Code:
    .slide .entry h2 {
    color:black;
    }
    .slide .entry p {
    color: black;
    }

    This will solve your issue.
     
    efcom likes this.
  3. efcom

    efcom New Member

    Joined:
    Jan 21, 2013
    Messages:
    16
    Likes Received:
    0
    Thanks, works fine :)

    how can I remove the shadow effect?



    edit: Got it :)

    .slide .entry {
    text-shadow: none;
    }
     
Thread Status:
Not open for further replies.

Share This Page