« Web, HTML, Tech Forum

how do i change the names of the about me and who i'd like to meet sections?

ive seen some other ppl on here with something different than the standard about me and who i'd like to meet and i wanna know how to do that.


Report Topic

1 Reply

Reply by 5ativa vampir3

posted

to replace “about me” heading:
.blurbs .inner .section:nth-child(1) h4{ font-size:0; }
.blurbs .inner .section:nth-child(1) h4:before{ content: "insert desired heading here"; font-size:.8rem; font-family: "insert font";}

to replace “who i’d like to meet” heading:
.blurbs .inner .section:nth-child(2) h4{ font-size:0; }
.blurbs .inner .section:nth-child(2) h4:before{ content: "insert desired heading here"; font-size:.8rem; font-family: "insert font";}

you can use them both one right after the other if you want to. since this is an h4 element you might be able to get away with just specifying the class in your font configuration rather than entering it manually in every replacement heading but i haven’t tried this so no promises lol

remember 2 put ur code between two style tags (<style></style>) in either your meet or about section :) hope this helps


Report Reply