Hello,
My question relates to: http://radiosmash.ch
Is it possible to add content to the end of the left menu, i marked it with a red cross at this picture:
http://fs5.directupload.net/images/160216/26mptlx5.jpg
Many thanks and best regards,
Jürgen
Hi Jürgen,
Please try adding a widget area to your header: http://kriesi.at/documentation/enfold/adding-a-widget-area-to-the-header/. We can help you out with styling once you’ve added it.
Thanks,
Rikard
Oh yeah, that’s cool… Many thanks! :-)
But now i’m missing the line under “Facebook, Twitter, etc.”
This line is now under the new widget.
The line should be facing up and the widget perhaps even a line that would fit into the concept.
I want a line above and below the widget. Is there a simple solution?
I ask the question rather better:
How do I get the “Widget” the Flayer under the “Menu” that the “widget” on Facebook, Twitter, etc. coming? With CSS it does not work, right?
Just look at this picture, it’s better than text: ;-)
Hi!
Add this in the Quick CSS field in order to fix the border:
#header .widget {
border-top: 1px solid #e1e1e1;
}
If you want to move the widget on top of the social icon. Replace the action hook with this:
add_action( 'ava_inside_main_menu', 'enfold_customization_header_widget_area' );
function enfold_customization_header_widget_area() {
dynamic_sidebar( 'header' );
}
Cheers!
Ismael
Wunderful, thats very simple but perfect! Many thank!