Hello, how can i change the background and the text color of the phone info field above my header?
Hey Luisgasser!
Please add the follow to your code
.phone-info {
background-color:
color:
}
where you change the values, based on what you need.
Let us know if you have any questions
Best regards,
Basilis
hello, thank you for helping.
everything works great, but it doesn’t change the color of the text.
here is my css:
.phone-info {
text-align: center;
font-size: 14px;
width: 100%;
color:#a2c138;
}
Hi!
try
.phone-info span { color: #a2c138; }
and let me know if that works
Regards,
Basilis
great, it works – thank you!