You’re welcome @stellamaris5
oh by the way, how do I make the phone number in the NavBAr clickable on mobile. Before it wasnt now I’ve added the below code and it is still not clickable
.site-description:after {
content: “Call <p>07739 188 652</p>”;
display: block;
padding-right: 0%;
color: purple;
}
P.S> my son is called Rocco as well!
.site-description:after {
content: "Call <p><strong><a href="//07739188652">07739 188 652</a></strong></p>";
display: block;
padding-right: 0%;
color: purple;
}
Eheh, great name 😛
Anyway about the site description, instead of that you should use this snippet:
http://themesandco.com/snippet/adding-a-link-in-the-wordpress-tagline/
and
.site-description a{
display: block;
/* other stuff to style it */
}
Hope this helps.