I can get the Coherence theme to not display the Top Welcome Message and Social Icons by simply not placing any content there, however, it creates a big space between the logo/navigation and the top of the page. How can I remove that div completely so it brings the logo/navigation closer to the top?
How to remove the "Top Welcome Message" and Social Icons
7 posts from 4 voices-
Posted 7 months ago #
-
Removing this code from the header.php file seemed to do the trick:
<div id='wrap_all'>
<div class='container_wrap' id='meta_header'>
<div class='container'>
<?php
do_action('avia_meta_header');
avia_banner(); // avia_banner functions located in functions.php - creates the notification at the top of the site/*
* display the themes social media icons, defined in the wordpress backend
* the avia_social_media_icons function is located in includes/helper-social-media-php
*/
$args = array('outside'=>'ul', 'inside'=>'li', 'append' => '');
avia_social_media_icons($args);
?></div><!-- end container-->
</div>
Posted 7 months ago # -
I spoke too soon... sure enough, when I remove that code the extra space is removed, BUT the image links created in the sidebar widget cease to function. When I replace the extracted code, they work again! Needless to say, I need some assistance, please!!!
Posted 7 months ago # -
Hi!
Add following code to css/custom.css or the quick css field:
#meta_header, #top #meta_header .container { display: none; }Regards,
PeterPosted 7 months ago # -
Hi breakpoint,
Don't remove those code and just add this code in your Quick CSS or custom.css:
#meta_header { display: none; }or
#meta_header { display: none !important; }Hope this helps. :)
Regards,
IsmaelPosted 7 months ago # -
Thanks... that did the trick!
Posted 7 months ago # -
Glad your problem was fixed. Let us know if you need any further assistance.
Regards,
MyaPosted 7 months ago #
Topic Closed
This topic has been closed to new replies.














