Viewing 6 posts - 1 through 6 (of 6 total)
  • Author
    Posts
  • #521923

    Hi, guys! Thank you for your work.

    I’ve placed a text widget with phone number at logo area. I have to do that responsive and at one level with logo.

    Could you help me, please?

    #522031

    Hey lookashow!

    Instead of using left: 80% css try this out.

    #header .widget { position: absolute; right: 20px; }
    

    Best regards,
    Elliott

    #522174

    Hi Elliott! Thank you, it works.

    1) I’m using a tag “href=tel:”, but link don’t display at logo area.
    2) It’s not responsive for mobile devices, the phone number is overlapping above the logo.

    #522687

    Hi!

    Please add following code to Quick CSS

    #header .widget { z-index: 999; }
    @media only screen and (max-width: 480px) {
    #header .widget { top: 50px; }}

    Regards,
    Yigit

    #522805

    Hi, Yigit! Thanks.

    But phone number is overlapping at H1-header now. Could to do that width stretchable like a logo ?

    It’s very important by reason of I get 80% mobile visitors.

    #522955

    Hey!

    Please change the code to following one

    #header .widget { z-index: 999; }
    @media only screen and (max-width: 480px) {
    #header .widget {
        top: 50px;
        width: 100%;
        left: 30px;
    }
    .responsive #top #wrap_all #header {
        height: 240px;
    }}

    Regards,
    Yigit

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