How do I add a text filed in the header ?
Hi Alan!
Please refer to this post – http://kriesi.at/documentation/enfold/adding-a-widget-area-to-the-header/ and add a widget area to your header and place your text inside your widget
Regards,
Yigit
Ok, but how do I set the font size and font colour ?
Hi,
Please try adding this code to the Quick CSS section under Enfold > General Styling or to your child themes style.css file:
#header .widget { font-size: 20px; color: orange; }
Best regards,
Yigit
Hi Yigit, thanks sofar ;)
Ok, now I got the text and the styling, but its not really responsive, would that be possible?
psqi.dk/wordpress
Hi,
for smaller screen sizes you need to add media queries to the code Yigit has provided to you. Something like this:
@media only screen and (max-width: 989px) and (min-width: 768px) {
#header .widget {
font-size: 19px;
}}
For more information about media queries: https://css-tricks.com/snippets/css/media-queries-for-standard-devices/
Best regards,
Andy