-
AuthorPosts
-
March 25, 2022 at 6:46 pm #1346058
Hi!
The customer had the idea to make a logo + text and again a logo.
On the mobile – the logo below the text and again the logo was displayed in this order.
I hope for help in the matter.March 25, 2022 at 7:16 pm #1346072First of all – please look on top of this forum – this logo is with text. After scrolling the text disapears. And now your customer likes to have besides the text a second logo.
What kind of header did you choose? Logo left – menu right … shrinking or not ?
What should happen on scroll – on small screens?
Do you whish to have on each a different link – or is it for all the same backlink?March 26, 2022 at 6:11 pm #1346127Hi SenjaLp,
I’m not sure I understand what you need help with. If you should need any further help, then please post a link to your actual site, and let us know exactly what you are looking to change.
Thanks for helping out @guenni007.
Best regards,
RikardMarch 27, 2022 at 1:53 pm #1346206March 28, 2022 at 5:22 am #1346259Hi,
Thank you for the info.
You can use widgets to add another logo inside the header area. Please check this documentation for more info.
// https://kriesi.at/documentation/enfold/header/#adding-a-header-widget-area
Or use the avf_logo_final_output filter to adjust the html of the current logo.
function avf_add_logos($logo) { $logo .= '<a class="first-logo" href="/"><img src="http://site.local/wp-content/uploads/2022/03/logo-rivista.jpg"/></a>'; $logo .= '<a class="second-logo" href="https://site.org"><img src="site.local/wp-content/uploads/2022/03/ordine.jpg"/></a>'; $logo .= '<a class="third-logo" href="https://www.site.it"><img src="http://site.local/wp-content/uploads/2022/03/medicina.jpg"/></a>'; return $logo; } add_filter('avf_logo_final_output', 'avf_add_logos', 10, 1);
Best regards,
IsmaelMarch 28, 2022 at 10:14 am #1346276Implemented the main logo in svg and the second logo png via widget.
Logo is not displayed exactly and on the mobile must be higher than the main logo.
March 29, 2022 at 7:23 am #1346394Hi,
Thank you for following up.
You can use this css code to adjust the height of the header and move the position of the second logo.
@media only screen and (max-width: 767px) { .responsive #top #header_main>.container .main_menu .av-main-nav>li>a, .responsive #top #wrap_all .av-logo-container { height: 180px !important; line-height: 180px; } .responsive #top #header .widget { left: 80px; top: 80px; max-height: 80px; } .responsive #top #header .widget img { width: 80px; } }
Please toggle or temporarily disable the Enfold > Performance > File Compression settings after adding the css.
Best regards,
IsmaelMarch 30, 2022 at 9:00 am #1346521Hi Ismael.
Thank youMarch 30, 2022 at 2:10 pm #1346580 -
AuthorPosts
- The topic ‘Logo and Text’ is closed to new replies.