Viewing 10 posts - 1 through 10 (of 10 total)
  • Author
    Posts
  • #876991

    Hi, how can I make the title font bigger and the price font smaller?

    Also, can I turn the add to cart into a button?

    #877533

    Hey DROR,

    Please try the following in Quick CSS under Enfold->General Styling:

    #top .price span {
        font-size: 40px;
    }
    
    .avia_cart_buttons .show_details_button font, .avia_cart_buttons .add_to_cart_button font {
      font-size:16px !important;
    }

    Best regards,
    Rikard

    #877782

    That didn’t work, The price is already set at 50px, I want to make the title bigger. how can I do that?

    #877785

    Hey!

    Please try adding !important rule as following

    #top .price span {
        font-size: 60px!important;
    }
    

    Best regards,
    Yigit

    #877795

    Hi Yigit, that again increased the price size. I want to increase the product title that is shown above the price.

    #877821

    Hi,

    My bad. Please use following code instead

    h2.woocommerce-loop-product__title {
        font-size: 50px!important;
    }

    Best regards,
    Yigit

    #878319

    Thanks! Can you also tell me how I can add a background to the add to cart text – https://screencast.com/t/U5ld42K40aQV – so it will look more like a button? I want it to have a red background.

    #878718

    Hi,

    Please try this CSS as well:

    a.add_to_cart_button {
      background-color:red !important;
    }

    Best regards,
    Rikard

    #878739

    Great, thanks!

    #878989

    Hi,

    Glad we could help. Please let us know if you should need any further help on the topic or if we can close it.

    Best regards,
    Rikard

Viewing 10 posts - 1 through 10 (of 10 total)
  • You must be logged in to reply to this topic.