Hi!
I tried to add a weather widget to the top menu of my website by following your documentation (add a header widget). But I can’t manage to move it at the right position: next to the social icons.
Any tip?
Best regards.
Hey AgenceKineka,
Please try adding this code to the Quick CSS section under Enfold > General Styling or to your child theme’s style.css file:
CSS Snippet:
#live_weather_station_widget_outdoor-2 {
width: 180px;
float: right;
}
Best regards,
Yigit
Almost!
Now it’s in the middle of the menu…
Hi AgenceKineka,
I can’t seem to find the widget, try adding relative position and left values on Yigit’s code, so it should look like:
#live_weather_station_widget_outdoor-2 {
width: 180px;
float: right;
position: relative;
left: 50px;
}
just increase the left value to move the widget to the right.
Best regards,
Nikko