« Back to the HTML Forum

i cant change the online logo

Posted by trin ! 🧁

posted

Forum: HTML Group

i made a blinkie using blinkies cafe and uploaded it to imgBB and i tried both html full linked and html thumbnail linked. im using the code template thing i found on the website: <style>.online{content: url("url") !important;}</style>

im replacing the url in quotation marks with the image url. can someone help me figure out what im doing wrong? i know basically nothing about html so im probably making a stupid mistake


Report Topic

3 Replies

Sort Replies:

Reply by sudofry

posted

Try using .online img instead of just .online


Permalink Report Reply

Reply by heath

posted
updated

<style>

.online{

content: url("") !important;

}

</style>


either that or this:


<style>

.online img{

content: url("") !important;

}

</style>


Permalink Report Reply

Reply by trin ! 🧁

posted