Hey there! I have a question that I'm hoping someone could answer and help me with. Is there a way that I can code the Pet Treasure title to show something else. For example, changing the title of Pet Treasure to say Gifts instead?
I am not 100% sure that is correct, as the profile was done by someone else.
Maybe try it and replace BOOTY, with what you want it to show?Thank you so much for trying to help, I appreciate it. Unfortunately, it didn't work. 😟
try this:
h2 {
visibility: hidden;
}
h2::before { content: 'Gifts'; visibility: visible } the first part of this is telling the header text (h2) of the pet treasure section to be invisible. the second part is adding another piece of text ("Gifts") before that text, and telling the new text to be visible. this way you've essentially hidden the old text and replaced it with something new.