Hello, I’m trying to make the phone number I have in the header a link so when the user clicks it, it gives them the option to call. Can you give me the quick css to do this?
Hi kevinjsutton!
Please add your phone number to “Phone Number or small info text” field as following
<a href="tel:+1234567">1234567</a>
Cheers!
Yigit
Thanks! That worked perfectly but it removed the color of the text that you helped me add in from this thread https://kriesi.at/support/topic/general-styling-issues/ Can you help me add that back please?
.phone-info span{
color: #018db0;
}
Hi!
Please replace the code with following one
.phone-info *{
color: #018db0 !important;
}
Regards,
Yigit
Resolved, thank you!