Cart below logo on Mobile, would like to have on left

infamouscompany.ca

on mobile view the cart shows below the logo. but would prefer it be on the left of the logo so the cart is to the let and the hamburger icon for menu is on the right. balanced looking then. assuming this would be some custom work or css for this.

Comments

  • Hello,

    Please, go to Betheme -> Theme options -> Responsive -> Header, and there you will be able to choose the layout you like.

    Thanks

  • thank you. that accomplished exactly what I was looking for. the top action menu isn't visible anymore on the mobile page though and is sitting exclusively under the mobile menu. from the looks of it none of the other options seem to at face value put the action menu above the main menu on mobile. was it a glitch that the action menu was showing before?

  • The Action bar on mobile shows only with a Default mobile header layout.

    However, you can activate it with the following code:

    @media(max-width:767px){
     .mobile-header-mini #Action_bar {
       display: block!important;
    }
    

    Thanks

  • that seems to take all the content below the slider and bump it up to the top right below the main menu and overlaps that content over the slider.

  • Sorry, but I did not notice any overlapping on your website.

    This is how it looks with the CSS:

    And without the CSS:

    Best regards

  • I found the issue. it was missing a bracket.


    @media(max-width:767px){

     .mobile-header-mini #Action_bar {

      display: block!important;

    }}


    this works.


    BUT on mobile I do not see the slogan. I would actually prefer to NOT show the action menu but rather just show the slogan above the main header bar on mobile if possible. what would this look like if I wanted to accomplish this?

  • Please, replace the previous code with the following one:

    @media(max-width:767px){
     .mobile-header-mini #Action_bar,
     #Action_bar .contact_details li.slogan{
     display: block!important;
    }
     .mobile-header-mini #Action_bar .social-menu{
       display: none!important;
     }
    }
    

    Thanks

  • thank you so much! that worked perfectly!

Sign In or Register to comment.