Hi,
I was able to add the phone number on top of the menu header, but it is showing up on the left and right side only. Can I add it to the middle, while changing the size of the font/colour and issue a call with ex: “a href=”tel: 123 456 7899”
Hey Eugeniadms,
https://share.getcloudapp.com/nOuNe7K4 You have inline styles added there, please remove.
Here is the code you can put in Enfold > General Styling > Quick Css, if it does not work, put into themes/enfold/css/custom.css
#header_meta .phone-info {
width: 50vw;
margin: 0 auto;
float: none;
}
If you need further assistance please let us know.
Best regards,
Victoria
Thanks Victoria
How can I change the size of the font to say 30? Is it possible to change that portion of the banner to a different colour as well?
Hi,
Please try this CSS to change the font size:
.phone-info span {
font-size: 30px;
}
And this to change the background colour:
#top .av_header_transparency #header_meta {
background: red;
}
Best regards,
Rikard
Thanks Rikard,
This worked well! Much appreciated!
Is there away to make it sticky on mobile?
Hi Eugeniadms,
Can you try adding this CSS code as well:
@media only screen and (max-width:767px) {
#top #wrap_all #header {
position: fixed !important;
}
}
Best regards,
Nikko