« Back to the HTML Forum

how do i change the text here???

Posted by starriii_

posted

Forum: HTML Group

 

how do i change the text in the area I circled?


Report Topic

4 Replies

Sort Replies:

Reply by heath

posted

if you want to change the heading on all the header, it would be:

<style>

.heading{

color: red !important;

background-color: green !important;

}

</style>


if you want to change it just on that one, it's:

<style>

.contact .heading{

color: red !important;

background-color: green !important;

}

</style>


obviousy change the colors to your liking, and add anything else into the code that you want.





Permalink Report Reply

Reply by starriii_

posted

ooh thanks but is it possible to change what the text says?

so instead of "contacting scarletttt_" it'll be something else


Permalink Report Reply

Reply by heath

posted

<style>

.contact h4{

font-size: 0px !important;

}

.contact h4:before{

content: "words here" !important;

font-size: 12px !important;

}

</style>


Permalink Report Reply

Reply by starriii_

posted