Changing colors and fonts

Discussion in 'Elite Pro WordPress Theme' started by starspirit35, Nov 24, 2012.

  1. starspirit35

    starspirit35 New Member

    Joined:
    Nov 9, 2012
    Messages:
    4
    Likes Received:
    0
    Hi! My website is www.fortcollinsshiatsumassage.com. How do I change the fonts, colors, and sizes of the text on the pages of my website and also on the sidebars? Also, in the slider, is there a way in the lower left hand of the slider for it just to be three dots and not have the triangle images beside them? Thanks!

    Nick
     
  2. Gourav

    Gourav Support Staff

    Joined:
    Oct 19, 2012
    Messages:
    7,728
    Likes Received:
    207
    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')('h2')('h3')('h4')('h5')('h6');
    Now,

    Paste this code in Custom CSS
    Appearance > Theme Option > Styling Option > Custom CSS
    Code:
    h1,h2,h3,h4,h5,h6,a{
    color:red!important;
    font-size:20px!important;
    font-family:symbol!important;
    }
    p{
    color:red!important;
    font-size:20px!important;
    font-family:symbol!important;
    }
    Note:-1) Inplace of "red" put your color code.
    2) Adjust font size as per your requirements.
    3) Inplace of "symbol" put your font type.

    2.For your second issue.

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

    Code:
    .flex-direction-nav li .next {
    display: none;
    }
    .flex-direction-nav li .prev{
    display:none;
    }
    This will solve your issue.
     
  3. starspirit35

    starspirit35 New Member

    Joined:
    Nov 9, 2012
    Messages:
    4
    Likes Received:
    0
    If you look at my website it looks like all of the text is bold. I'm not sure why. Also, what font did you use in the Elite theme demo on your website? I would like to use that on mine. Also if you look at the slider on the Elite demo page on the lower left hand side, it has just three dots and if you look on my website www.fortcollinsshiatsumassage.com, it has two white triangles by the dots. How do I get rid of those two triangles? This is getting a little frustrating trying to change simple things on my site. I did not know that I would have to know CSS code. Thank you for the help.

    Nick
     
  4. Nitesh

    Nitesh Support Staff

    Joined:
    Oct 19, 2012
    Messages:
    5,165
    Likes Received:
    160
    Please share your website link again. Current link using default wp theme.
     

Share This Page