Change overall font to Arial

Discussion in 'SaleJunction E-Commerce WordPress Theme' started by v4sb, Jan 28, 2015.

  1. v4sb

    v4sb Member

    Joined:
    Mar 14, 2013
    Messages:
    341
    Likes Received:
    0
    Would like to change the font of the theme to Arial throughout
     
  2. praveen

    praveen Support Staff

    Joined:
    Jan 1, 2015
    Messages:
    2,344
    Likes Received:
    67
    Hello,

    Please paste the code given below in Custom CSS section
    (Appearance -> Theme Options -> Styling Options -> Custom CSS) of your dashboard.

    Code:
    body, a, p, h1, h2, h3, h4, h5, h6 {
    font-family: Arial;
    }
    Thanks,
    Praveen
     
  3. v4sb

    v4sb Member

    Joined:
    Mar 14, 2013
    Messages:
    341
    Likes Received:
    0
    Instead of Arial, is there a way to change to Myriad Pro or to "today sans sarif Caps light"?
     
  4. Pramod

    Pramod Guest

    Joined:
    Aug 8, 2014
    Messages:
    2,847
    Likes Received:
    63
  5. v4sb

    v4sb Member

    Joined:
    Mar 14, 2013
    Messages:
    341
    Likes Received:
    0
    This worked! However, there are still two places that have a different font. I have provided screenshots of these areas. Is there a way to resolve this? [​IMG][​IMG]
     
  6. praveen

    praveen Support Staff

    Joined:
    Jan 1, 2015
    Messages:
    2,344
    Likes Received:
    67
    Hi,

    Please paste the code given below in Custom CSS section
    (Appearance -> Theme Options -> Styling Options -> Custom CSS) of your dashboard.

    Code:
    ul#menu-footer-menu li a {
    font-family: arial !important;
    }
    ul.product_list_widget span, ul.product_list_widget li a {
    font-family: arial !important;
    }
    Thanks,
    Praveen
     
  7. v4sb

    v4sb Member

    Joined:
    Mar 14, 2013
    Messages:
    341
    Likes Received:
    0
    Hi and thank you! The codes have worked well. Now, I just need to change all of the text to the color purple. So just like I changed the overall font throughout the site to be a certain font, I need that same font to all be purple. Here is the code I currently have:

    body, a, p, h1, h2, h3, h4, h5, h6 {
    font-family: 'Raleway', sans-serif;
    }

    ul#menu-footer-menu li a {
    font-family: 'Raleway', sans-serif !important;
    }
    ul.product_list_widget span, ul.product_list_widget li a {
    font-family: 'Raleway', sans-serif !important;
    }
     
  8. praveen

    praveen Support Staff

    Joined:
    Jan 1, 2015
    Messages:
    2,344
    Likes Received:
    67
    Hi,

    Use the given below css code.
    Code:
    body, a, p, h1, h2, h3, h4, h5, h6 {
    color: purple !important;
    }
    ul#menu-footer-menu li a {
    color: purple !important;
    }
    ul.product_list_widget span, ul.product_list_widget li a {
    color: purple !important;
    }
    Thanks,
    Praveen
     

Share This Page