• I have installed a menu header for my site that includes a search bar and cart button. The theme I have installed, has it’s own Cart icon and container. I’m trying to get rid of the one that came with the theme (the red one in the top right corner) and the container/margin that is pushing my menu to the left.

    Any idea how to do this? I’ve tried the “display: none;” under every Class and ID I could find, but it hasn’t helped. I’m hoping someone here is able to assist me with this

    Thanks!

    • This topic was modified 3 years, 8 months ago by Jan Dembowski. Reason: Moved to Fixing WordPress, this is not an Developing with WordPress topic

    The page I need help with: [log in to see the link]

Viewing 5 replies - 1 through 5 (of 5 total)
  • Hello,

    Try below CSS code if that helps

    .thb-secondary-area .thb-quick-cart.thb-secondary-item
    {
      display: none;
    }

    I am not sure, but if the Cart button came with the theme there must be some setting to hide this instead of using the CSS tweak. If we use a theme setting your Menu would automatically get aligned.

    Hope this information helps.

    Thanks.

    Thread Starter tharronf

    (@tharronf)

    This worked! Thanks!! Now, how do I get the menu to align right so it’s not squished against the logo?

    I am using “Smart Home” Theme if that helps you at all. Also using MegaMenu Plugin. Hopefully there is a setting I am missing that can fix this for me.

    Thank you so much!

    • This reply was modified 3 years, 8 months ago by tharronf.

    Hello,

    It seems “Smart Home” is a paid theme, so I would request if you can raise a support forum in that forum so you may get quick help.

    Thanks.

    Hi @tharronf,

    You can use this code snippet:

    
    @media only screen and (min-width: 1068px)
    .header .thb-navbar {
         display: inline-flex;
         margin: 0 auto;
         margin-top: 7px;
    }"
    

    Let me know if my answer can resolve your issue ??

    Thread Starter tharronf

    (@tharronf)

    @lucaslitextension Thank You for your help. I got it all resolved after some digging, research, and help from you guys!

    Quick question though. I am trying to remove the native search bar from the mobile menu and only use the Fibo Search Bar (which I like better) for both Mobile and Desktop. I have it working perfectly for Desktop, but I have both the Fibo and Native Search Bar active on mobile.

    Any chance you can help me figure out how to remove the native searchbar?

    Thanks!

Viewing 5 replies - 1 through 5 (of 5 total)
  • The topic ‘Removing my Cart Icon and Container’ is closed to new replies.