this might be the last time i aks for help on css.
anyways, i need help on changing the "myspace.windows93.net" logo into anything i want
u just have to make the initial logo invisible and put a new logo on top of it. this is what i did:
a.logo { font-size: 0; }
.logo::after { color: #fff; content: "𝔦𝔫𝔣𝔢𝔯𝔫𝔬: 𝔯𝔢𝔞𝔩𝔪 𝔬𝔣 𝔱𝔥𝔢 𝔡𝔞𝔪𝔫𝔢𝔡"; font-size: 25px; font-weight: 800; font-family: auto; text-align: center; }
just change the content and tweak it a lil bit to match ur page. hope this helps :)
u just have to make the initial logo invisible and put a new logo on top of it. this is what i did:
a.logo {
font-size: 0;
}
.logo::after {
color: #fff;
content: "𝔦𝔫𝔣𝔢𝔯𝔫𝔬: 𝔯𝔢𝔞𝔩𝔪 𝔬𝔣 𝔱𝔥𝔢 𝔡𝔞𝔪𝔫𝔢𝔡";
font-size: 25px;
font-weight: 800;
font-family: auto;
text-align: center;
}
just change the content and tweak it a lil bit to match ur page. hope this helps :)