Viewing 20 posts - 1 through 20 (of 20 total)
  • Author
    Posts
  • #1458548

    I’m trying to get these category photos and text to show “4 across” on desktop, and then “2 and 2” on Mobile view. Can you tell me how to achieve this?
    See screenshots attached.
    Thanks

    #1458556

    Hey bemodesign,

    Thank you for the inquiry.

    We may need to inspect the site in order to provide the appropriate modifications. Please provide the site URL in the private field and the link to the category page.

    Best regards,
    Ismael

    #1458733

    Please let me know asap. thanks. web login attached.

    It’s the area right below the “Best Sellers:” that I need this. Seems like there is some code making it stretch our weird. Please help with this so I can get the same look as the examples.

    • This reply was modified 3 months ago by bemodesign.
    #1459252

    Hi,

    Thank you for the info.

    Did you add the following css code? The images get stretched because of it.

    .avia-image-container .avia_image, .avia-image-container .avia-image-overlay-wrap {
        height: 200px !important;
        width: 400px !important;
        margin: 20px 0 0 0 !important;
    }

    To adjust the width of the columns in mobile view for this specific section, try applying a unique ID to the Color Section in the Advanced > Developer Settings > Custom ID field (for example: bc-custom-section). Then, add this css code:

    #top #bc-custom-section div .flex_column {
        width: 50% !important;
        margin-left: 1%;
    }

    Best regards,
    Ismael

    #1459338

    1. When I added that code, it changed the look on the desktop also. It looks good on mobile, but how do I just specify that only?

    2. Also, trying to get rounded edges on these specific images only. What code can I add? And need to make sure the “square” link box around it doesn’t show.

    Thanks!

    • This reply was modified 3 months ago by bemodesign.
    • This reply was modified 3 months ago by bemodesign.
    #1459900

    Please let me know on this. thanks

    #1459913

    Hi,

    Thank you for the update.

    To apply the modification only on mobile view, please replace the css with the following code:

    @media only screen and (max-width: 768px) {
    
      /* Add your Mobile Styles here */
      #top #bc-custom-section div .flex_column {
        width: 50% !important;
        margin-left: 1%;
        border-radius: 30px;
      }
    }
    

    The css above will also apply rounded edges to the columns.

    Best regards,
    Ismael

    #1459923

    thanks!!!

    #1459924

    I don’t really notice the rounded edges when I change the px. Any ideas on this?

    #1460368

    Hi,
    To add a border radius to the images in #bc-custom-section for bothe desktop and mobile, try this CSS in your Enfold Theme Options ▸ General Styling ▸ Quick CSS field:

    #top #bc-custom-section div .flex_column a.avia_image {
    	border-radius: 30px;
    }
    

    Please ensure to copy the code from the forum and not an email notification so the symbols are not converted.
    After applying the css, please clear your browser cache and check.

    Best regards,
    Mike

    #1460703

    tired it, it looks the same. see the home page categories. Not much radius on rounded edge

    #1460704

    Also, on mobile view, how can I get space between the images? There is a space below, but no space side-to-side. (see attached)

    #1460715

    new login to website attached. let me know if you can please help. thanks

    #1460716

    Hi,

    Thanks for the screenshot.

    The css code above should have worked. Please try this again:

    #top #bc-custom-section div .flex_column img {
        border-radius: 30px;
    }

    Best regards,
    Ismael

    #1460717

    yes, that worked!!

    Last thing, on mobile view, how can I get space between the images? (see attached)

    #1460721

    Hi,

    Last thing, on mobile view, how can I get space between the images? (see attached)

    Please update the previous css code:

    #top #bc-custom-section div .flex_column {
        width: 46% !important;
        margin-left: 3% !important;
        border-radius: 30px;
    }
    

    Best regards,
    Ismael

    #1460840

    Ok great. I made it weird on my desktop view, so I added code for only mobile view. seems to work. is this good?;

    @media only screen and (max-width: 768px) {

    /* Add your Mobile Styles here */
    #top #bc-custom-section div .flex_column {
    width: 46% !important;
    margin-left: 3% !important;
    border-radius: 30px;
    }
    }

    #1460870

    Hi,

    Did you add another css media query for mobile view?

    @media only screen and (max-width: 768px) {
       /* Add your Mobile Styles here */
    }

    Simply include the css rules that you want to be applied on mobile view within an existing css media query. You don’t need to add another one.

    Best regards,
    Ismael

    #1461111

    Last thing, is there a way to not have a gap on mobile view, because the product is on the next row? Can we move up the products so there is not gap? (see attached)

    #1461162

    Hi,

    If you have any additional questions at this time we kindly ask that you open them up in a separate thread. The longer threads get in the forum, they become more difficult to support as they tend to drift off topic and they also make it troublesome for users trying to search for solutions. Keeping threads relevant to their original inquiry ensures that we can keep better track of what has been resolved and that users can more effectively find answers to similar issues they might be experiencing.

    Thanks!

    Best regards,
    Ismael

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