Hi guys,
Website: vossani.com
How can I change just the number on the search page to black. Pic for reference:
A user seeks to change the color of a number displayed on their search page to black.
Current Issue:
Proposed Solution:
<span> tag within the theme code.page--title.template-title span {
color: #000;
}
This approach allows styling only the number without affecting the surrounding text in the h1 element.
Hi guys,
Website: vossani.com
How can I change just the number on the search page to black. Pic for reference:
Hi @flammagreg
Currently, the number you want to change to black is part of the h1 tag. It also has some additional text as well along with it. Adding styles to the h1 tag would apply to the whole sentence.
You can adjust the theme code and wrap the number in a tag and then apply the following CSS.
.page--title.template-title span {
color: #000;
}
Thanks.