• I am using a theme called greatshop.

    Im a newbie and need some help, can you please point me to the right direction.

    I would like to change ‘SHOWING 1–10 OF 15 RESULTS’ font to arial on this
    page: https://www.vape-studio.com/?product_cat=portable

    I do not know how to access the CSS file in wordpress. It is not in the main
    theme style css.

    however I use firebug to find out, apparently it is under:

    ?product_cat=portable #4 WHERE IS THAT? lol

    Basically where/how do i access the CSS for this? as i would like to change.
    Thank you for your time.

Viewing 6 replies - 1 through 6 (of 6 total)
  • add this code to your style.css but it will change on all the pages.

    .woocommerce .woocommerce-result-count, .woocommerce-page .woocommerce-result-count {
        font-family: arial !important;
    }

    or you can try this is header.php bettwen <head> tag </head> to cahnge only for page https://www.vape-studio.com/?product_cat=portable

    <?php if ( is_page( 'your_page_name' )  {  ?>
    <style>
    .woocommerce .woocommerce-result-count, .woocommerce-page .woocommerce-result-count {
        font-family: arial !important;
    }
    </style>
    <?php } ?>
    Thread Starter caspa90

    (@caspa90)

    is there a specific place is should place the first code in style.css? thanks for your help btw

    at the end of your file so you can find it easy if will not work .

    Thread Starter caspa90

    (@caspa90)

    seems to work! thank you. is there a code i can use to make everything to arial?

    i don`t know how many style sheets you use, but you can override css rule for body and paragraph. that will change the font.

    body {
     font-family: Arial !important;
    }
    p {
      font-family: Arial !important;
    }
    Thread Starter caspa90

    (@caspa90)

    Thank you sooooooooo much, you was quick to respond and help. Only thing is some things are still times new roman like the products fonts. other then that you have been a great help! =D

Viewing 6 replies - 1 through 6 (of 6 total)
  • The topic ‘help finding out where CSS file is’ is closed to new replies.