Archived topic
Text in mobile header
3 replies · Started by leo on August 16, 2019
I need a quick reminder here. I made this site some time ago: https://huisjeduyncroft.nl
In the mobile view, the word 'vakantiehuisje21' appears in the header. I want to remove it, so went through all the Customize settings, but I cannot find it, to my big frustration. Please help...
Thanks in advance!
Hi there,
looks like that has been added using either using:
1. a GP Hook or Hook Element
2. or a custom function - which could be in your child theme functions.php or in the Code Snippets plugin.
Yes, found it in functions.php:
add_action( 'generate_inside_mobile_header','tu_mobile_header_html' );
function tu_mobile_header_html() { ?>
<span style="color:white; display: inline-block; margin-top: 15px;font-weight: bold;" >Vakantiehuisje 21</span>
Thank you!
Glad to be of help.