Hi Guys,
When I go to my website http://www.desalescoach.eu/ on my mobile and click on the menu, I see smal play buttons in front of the menu items. I don’t want that. How can I make them go away?
And is it possible to put some text in front of the social icons in the top header (secundary menu bar). I would like it to say, Volgen:
And my last question. Is it possible to always show the (hamburger)mobile menu on mobile, even when I scroll down on a page.
Thnx!!
Hey jdrijver!
Add this to your custom CSS.
#mobile-advanced a::before {
display: none;
}
.social_bookmarks::before {
content: "Volgen:";
position: relative;
top: 5px;
display: inline;
float: left;
}
Regards,
Elliott
Thank you so much!
But is it possible to make it the same font as the rest of the secondary menu?
Same as Bellen:
http://www.desalescoach.eu/
Hey!
Switch it to this.
.social_bookmarks::before {
content: "Volgen:";
position: relative;
top: 5px;
display: inline;
float: left;
font-size: 11px;
font-weight: bold;
}
Best regards,
Elliott
Thank you for your help. We are almost there!
But when you look at the site on mobile, you can see that the text in front of the social icons (Volgen:) is not inline correctly. I want it to be the same as “Bellen: +31629409940”
Do you see what I mean?
Thank you!
Hi!
It looks the same to me. If you want to move it up or down then play around with the top: 5px value in the CSS I posted.
Best regards,
Elliott