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
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
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
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
Hey Yigit,
I have add the widget area again, do i need to put a widget in?
Best regards
Kim
Hey!
Yes, so we can see the issue and provide you an accurate custom CSS code.
Regards,
Yigit
Hey :)
I did it now :)
Regards,
kim
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
It looks really great!! Thanks :)
Is it possible to move it under the logo in mobile view?
Best regards
Kim
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
Works great!
Thanks a lot!!