Viewing 8 posts - 1 through 8 (of 8 total)
  • Author
    Posts
  • #477030

    Hi,

    I would like to move the shopping cart icon to secondary menu.
    I used this:
    @media only screen and (min-width: 990px) {
    .html_header_top.html_bottom_nav_header #header_main {z-index: 10;}
    ul.cart_dropdown {top: 2px;}}
    The problem is that although I configured Enfold: ‘Display Floating on the side, but only once product was added to the cart’ the icon is always there.

    Can you please help?

    Thank you.

    #477492

    Hi eyeweb!

    Thank you for using Enfold.

    Where exactly in the top bar do you want to place the cart icon? A screenshot will help. Use imgur or dropbox.

    Best regards,
    Ismael

    #477604

    Hi Ismael,

    Please view screen shots.
    I placed it at the right side of the secondary menu.
    The problem is that it exits all time, while I Configued it to: Display Floating on the side, but only once product was added to the cart.

    I would like to appear only when an item is added to the cart.

    Thank you.

    #478568

    Hi!

    You can replace the code with this:

    .cart_dropdown {
      right: -50px;
    }
    
    .html_visible_cart .cart_dropdown {
      right: 200px;
      top: 2px;
    }
    
    #header_main {z-index: 10;}

    Adjust the values if necessary.

    Best regards,
    Ismael

    #478712

    Thank you Ismael.
    Do you have any suggestions how to handle it in responsive modes?
    At some screens it goes over the phone icon.

    #478944

    Hey!

    Viewing your site I couldn’t see the issue you are describing, did you manage to get it fixed?

    Best regards,
    Rikard

    #478949

    Hi Rikard,

    The problem is in responsive modes.
    If you view it for example in:
    1024 x 768
    1366 x 768
    1200 x 800
    1280 x 800
    1280 x 1024
    1680 x 1050
    You will see that the icon is not placed correctly.
    Can you please help me with this?

    #479422

    Hi!

    Use css media queries to adjust the position on different screen sizes. Example:

    @media only screen and (min-width: 1200px) {
    .html_visible_cart .cart_dropdown {
      right: 500px;
    }
    }

    This will adjust the right position of the cart icon on screen sizes larger than 1200px.

    Cheers!
    Ismael

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