Okay
  Public Ticket #441454
woocommerce
Closed

Comments

  •  2
    Rian started the conversation

    Hi!

    is it possible to:

    1) change the font sizes of both product title and price separately?

    2) change the shop page so images are in a masonry format?

    thanks!

    R


  •  8,851
    Tahir replied

    Hey ,

    1: Add this into the Custom CSS box located in your Salient Options panel (Make Sure there are no red cross in the Box) :

    .woocommerce ul.products li.product.classic h3{
        font-size: 26px !important;
    }
    
    
    .woocommerce ul.products li.product .price {
        font-size: 15px !important;
    }

    2: Would require custom work .

    Thanks



    ThemeNectar Support Team 

  •  2
    Rian replied

    thanks, that adjusted the shop page but not the single item page.

    thanks!

  •  8,851
    Tahir replied

    Hey Again,

    Add this into the Custom CSS box located in your Salient Options panel (Make Sure there are no red cross in the Box) :
    .single-product.woocommerce h1.product_title.entry-title {
        font-size: 26px !important;
    }
    
    
    
    
    .single-product.woocommerce .summary .price {
        font-size: 18px !important;
    }

    Thanks



    ThemeNectar Support Team 

  •  2
    Rian replied

    thanks!

    I found this code you gave someone to adjust the padding of the navigation but for some reason it\'s only working on the home page, then it goes away on the other pages:

    header#top nav > ul > li > a,header#top nav > ul li#search-btn, header#top nav > ul li.slide-out-widget-area-toggle {
    padding-bottom: 10px !important;
    padding-top: 10px !important;
    }

    can you advise?

    thanks!


  •  8,851
    Tahir replied

    Hey Again,

    Seems to be working on all pages. Could you please clear your browser cache/ cookies and check .

    Thanks


    ThemeNectar Support Team