Viewing 29 posts - 1 through 29 (of 29 total)
  • Author
    Posts
  • #417090

    Hello,

    I want to split the top bar in cells to show various info (small banners etc). I also want the logged in user on the last cell on the right. I’ve tried, but it does not work so well, particularly on mobile and smaller resolutions. I would appreciate some guidance.

    I attach the respective css I’ve created, and the code taken from another post to show the username and images.

    Thank you.

    #417595
    This reply has been marked as private.
    #418320

    Hi!

    I get a 403 error when trying to access your site, could you check please? Also, could you please provide us with screenshots highlighting what you are trying to achieve here, I’m not sure I understand exactly what you are trying to do.

    Cheers!
    Rikard

    #418338
    This reply has been marked as private.
    #419076

    Hey!

    We need an account to see the header-welcome thing, post one here as a private reply.

    Best regards,
    Josue

    #419158
    This reply has been marked as private.
    #419170

    On WordPress.

    Best regards,
    Josue

    #419190
    This reply has been marked as private.
    #419659

    What’s the URL to login? if i go to wp-admin i get a 403 forbidden message.

    Regards,
    Josue

    #419666
    This reply has been marked as private.
    #419671

    Still, can’t login. Alternatively, you can change your code temporarily so the welcome thing appears at all times, that way i wouldn’t need to login in order to see it.

    #419683
    This reply has been marked as private.
    #419699

    Hey!

    Merge your code with this:

    #header-welcome{
        font-family: 'Roboto';
        color: #C37D2D;
        font-size: 14px;
        border: 2px solid #C37D2D !important;
        text-align: center;
        padding-left: 5px;
        padding-right: 5px;
    }
    #avia2-menu, #header-welcome {
        float: right;
    }
    
    img.grp-top-banner {
        float: left;
    }
    
    @media only screen and (max-width: 767px) {
        #avia2-menu, #header-welcome, img.grp-top-banner {
            float: none !important;
            display: inline-block !important;
        }   
        #header_meta{
            text-align: center;
        }
    }

    Best regards,
    Josue

    • This reply was modified 9 years, 8 months ago by Josue.
    #419804
    This reply has been marked as private.
    #419878

    Your website is currently unaccessible (403).

    #419917
    This reply has been marked as private.
    #419918
    This reply has been marked as private.
    #419944

    Hey!

    1. Use padding-top/padding-bottom to increase the height of the meta area:

    #header_meta .container {
    	padding-top: 15px !important;
    	padding-bottom: 15px !important;
    }

    2. I don’t understand the other thing, why don’t you merge menuNotLogged with menuSecondary? $args[‘menu’] can only accepts one menu.

    Best regards,
    Josue

    #419950
    This reply has been marked as private.
    #419952

    Hey!

    Can you create a mockup of what would you want to achieve?

    Best regards,
    Josue

    #419954
    This reply has been marked as private.
    #419957

    Hey!

    I’m not noting that on my end – http://i.imgur.com/8gEdZxB.png

    Cheers!
    Josue

    #419959
    This reply has been marked as private.
    #419960
    This reply has been marked as private.
    #419961

    Yeah i see it now, try adding this:

    .html_boxed #top .cart_dropdown {
        top: 100px;
    }
    #419962
    This reply has been marked as private.
    #420046
    #top .avia_cart_buttons {
        background: red !important;
    }
    
    #top .avia_cart_buttons .button.add_to_cart_button {
        background: green !important;
    }
    
    #top .avia_cart_buttons .button.show_details_button  {
        background: blue !important;
    }

    Change as needed.

    #420739
    This reply has been marked as private.
    #420773

    Hi!

    Change it like this so it only gets applied on desktop:

    @media only screen and (min-width: 767px) {
    .html_boxed #top .cart_dropdown {
        top: 100px;
    }
    }

    Best regards,
    Josue

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