Viewing 11 posts - 1 through 11 (of 11 total)
  • Author
    Posts
  • #483440

    Hi,
    Is it possible to add this shortcode next to my logo in the top? [wpdreams_ajaxsearchpro id=1]

    //Kim

    Here are my site: http://www.littlethings.dk

    #483561

    Hi kimgaba12!

    Do this, http://kriesi.at/documentation/enfold/adding-a-widget-area-to-the-header/, to add a widget area to your header and then drag a text widget to it and add the shortcode inside.

    Regards,
    Elliott

    #483628

    Hi Elliott,

    I try using that metode, the problem is that the widget area, is over the logo – And not next to the logo.

    Can css maybe fix it?

    Regards,

    Kim

    #483939

    Hey Kim!

    Seems like you have removed widget area from header. CSS can fix it. Please add it once again and let us know so we can take a look.

    Best regards,
    Yigit

    #484000

    Hey Yigit,

    I have add the widget area again, do i need to put a widget in?

    Best regards

    Kim

    #484002

    Hey!

    Yes, so we can see the issue and provide you an accurate custom CSS code.

    Regards,
    Yigit

    #484005

    Hey :)

    I did it now :)

    Regards,

    kim

    #484016

    Hey!

    Please add following code to Quick CSS

    #header .widget {
        width: 70%;
        position: relative;
        left: 50%;
        margin-bottom: -90px;
    }

    and adjust the values as needed.

    Cheers!
    Yigit

    #484031

    It looks really great!! Thanks :)

    Is it possible to move it under the logo in mobile view?

    Best regards

    Kim

    #484344

    Hi!

    Use a css media query to adjust the position on mobile screens:

    @media only screen and (max-width: 767px) {
    #header .widget {
        width: 100%;
        position: absolute;
        left: 10%;
        top: 100px;
    }}

    Cheers!
    Ismael

    #484511

    Works great!

    Thanks a lot!!

Viewing 11 posts - 1 through 11 (of 11 total)
  • The topic ‘Searchbar aside the logo.’ is closed to new replies.