theme

Hi, I'm using the BeTheme and I'm running into some issues. How can I customize these styles?

For example:

  • How can I make the corners of images rounded?
  • How can I align the titles to the left and limit them to only two lines?
  • How can I change the style of the "Add to Cart" button?
  • When I hover over an image, I see effects like in this example from the template (https://prnt.sc/QyFcvGU6vOhp)I want to achieve the image hover effect.

Comments

  • Hi,

    Please always attach a link to your website so we can check it out. If the page is offline(localhost), then our help will be limited. You will have to contact us when the page is online. Also, please make sure that the page is not under maintenance before you provide us with the link.

    Thanks

    • How can I make the corners of images rounded?
    • How can I align the titles to the left and limit them to only two lines?
    • How can I change the style of the "Add to Cart" button?
    • When I hover over an image, I see effects like in this example from the template (https://prnt.sc/QyFcvGU6vOhp)I want to achieve the image hover effect.


  • 1) Use the following CSS code:

    .woocommerce .products_wrapper .product img{
     border-radius: 16px;
    }
    

    Put it in Betheme -> Theme options -> Custom CSS & JS -> CSS.

    2a) Edit shop template, open Shop Products element settings, and in the Style tab set Text align to Left:

    2b) Use also this CSS code:

    .woocommerce .products_wrapper .product .title a{
     text-overflow: ellipsis;
     overflow: hidden;
     display: -webkit-box;
     -webkit-line-clamp: 2;
     -webkit-box-orient: vertical;
    }
    

    3) Please go to Betheme -> Theme options -> Global -> Buttons, and you can adjust button styles there:

    Best regards

  • Thank you very much for your response—it's very professional.

    I’ve run into two new issues:

    1. After I added a two-line title (https://prnt.sc/nWY5WeQTCsDe), the price is no longer aligned with the left side.
    2. Right now (https://prnt.sc/3JLOGQdaz1sS), I want the stars to be fully visible. For items with no reviews, the stars should appear gray; for items with reviews, they should appear yellow. How can I achieve this? Here's the effect I want (https://prnt.sc/w8ZY1XVLzWj_).


  • 1) Add also this CSS, and recheck that:

    .products .mfn-product-li-item .mfn-li-product-row-price{
     align-self: start;
    }
    

    2) Unfortunately, there is no option to add empty stars to products without reviews.


    Best regards

Sign In or Register to comment.