Lovely first blog post but I am SICK AND TIRED of code partially working and code that by all means should be fine just refusing to work!!! Even code given to me directly from someone's profile that is working perfectly for them will not work at all on my profile and I am so done. ATP I'm willing to give someone the password to my account, give them a list of stuff that hasn't been working and see if they can do it somehow
Autoplay refuses to co operate (the code given to me from someone else's profile), changing the contact icons has only partially worked despite the code being 1) from a reliable tut and 2) the favicons largely being from the same source, and my loading screen isn't working either, even when I don't change the gif that was on the og layout.
I'm definitely gonna figure out what I've done wrong in like a week and then feel like a total idiot, but for now i don't see anything wrong in my code layout and I've been struggling with this all day
Comments
Displaying 3 of 3 comments ( View all | Add Comment )
ray ☆彡
hi! i tested what went wrong;
autoplay: the needs to be out of the brackets since it's a html feature, although since u placed it in the css first the code got mangled up so you'll need to re-get the code
favicon: some of them didn't have semi-colons after, or single quotes for the links which can break them, heres it fixed:
.contact .inner .f-row:nth-child(1) .f-col:nth-child(1) a:before {
/* ADD 2 FRIENDS */
content: url('https://external-media.spacehey.net/media/sGvWCpuNXw3D5RV-F8anG7U0GO7o1atlpS6FLU3YLLA4=/https://pixels.crd.co/assets/images/gallery13/031bf5c5.gif?v=29416114');
}
.contact .inner .f-row:nth-child(1) .f-col:nth-child(2) a:before {
/* ADD 2 FAV */
content: url('https://external-media.spacehey.net/media/skFMayQ7aV3aNqY7TOPpJnpQdDAnEDKK9ngBqu0kMJ-s=/https://pixelsafari.neocities.org/favicon/nature/star/star129.gif');
}
.contact .inner .f-row:nth-child(2) .f-col:nth-child(1) a:before {
/* SEND MSG */
content: url('https://external-media.spacehey.net/media/subWpS2lLWGkiPiWnq3b_jSAAmF0SMP9s3aNn54O6JoY=/https://pixelsafari.neocities.org/favicon/object/stationery/paper5.gif');
}
.contact .inner .f-row:nth-child(2) .f-col:nth-child(2) a:before {
/* FORWARD 2 FRIEND */
content: url('https://external-media.spacehey.net/media/sS4_JZ_ke5PcK_kpHOqjgJkNWTpsvneNRxPufjEsrv28=/https://pixels.crd.co/assets/images/gallery15/23f26d94.gif?v=29416114');
}
.contact .inner .f-row:nth-child(3) .f-col:nth-child(1) a:before {
/* INSTANT MSG */
content: url('https://external-media.spacehey.net/media/s4CsyHsftpw_3ZsFy9fWFeq8Rth8Z1U7TIxAzfSAzn9w=/https://pixelsafari.neocities.org/favicon/object/stationery/mail5.gif');
}
.contact .inner .f-row:nth-child(3) .f-col:nth-child(2) a:before {
/* BLOCK USER */
content: url('https://external-media.spacehey.net/media/snDbRIB_Zo0us89WGeWHPrxRCz7G2zWfbj120P93yCz8=/https://pixelsafari.neocities.org/favicon/horror/coffin3.gif');
}
.contact .inner .f-row:nth-child(4) .f-col:nth-child(1) a:before {
/* ADD 2 GROUP */
content: url('https://external-media.spacehey.net/media/sKEozx4cYNMT90uhKElkxOqO0d0HrJCsYrDyPHcqTiO4=/https://pixels.crd.co/assets/images/gallery109/c95f21bd.gif?v=29416114');
}
.contact .inner .f-row:nth-child(4) .f-col:nth-child(2) a:before {
/* REPORT USER */
content: url('https://external-media.spacehey.net/media/sYbkKOFzzhYExLXDoboZEbGmHW9VeZtH0GeSED0m2sus=/https://files.catbox.moe/re9m7i.webp');
}
the loading screen wasn't working because the img wasn't a .gif and the url was in double quotes rather than single which can cause issues, heres it fixed;
body::before {
content: " ";
height: 100vh;
width: 100vw;
display: block;
position: fixed;
top: 0;
left: 0;
z-index: 999999;
background-image: url('https://media1.tenor.com/m/F7_5ZYN5-7cAAAAd/gerard-way.gif');
background-size: cover;
background-repeat: no-repeat;
background-position: center;
animation: loading 2.5s ease 0s 1 normal forwards;
pointer-events: none;
filter: grayscale(100%)
}
HOPEFULLY THESE WORK!! if not lmk
argh stupid comments removing things
the autoplay iframe can't be placed within the style brackets since it's not css**
by ray ☆彡; ; Report
Omg tysm!! I knew trying to learn how to code at 2am was a bad idea xD I would have been agonising over this for agess
by Randomised_Toast ⚞ • ⚟; ; Report
NP LOL we've all been there xP
by ray ☆彡; ; Report
T (22)
If you're having trouble w autoplay I can tell you what I did
pls do ^^
by Randomised_Toast ⚞ • ⚟; ; Report
After, "embed/" replace the letters and numbers with the link for the song you want after "youtu.be/" up until the question mark. If this doesn't make sense lmk and I can send a ss of what part is needed
by T (22); ; Report
I'm on mobile and the code didn't want to post w my comment, I may just need to IM it
by T (22); ; Report
⁺‧₊˚ ♱ 𝔸𝕝𝕦𝕔𝕒𝕣𝕕 ♱˚₊‧⁺
Can you share the code you're using thats not working?
Here it goes
Autoplay:
}
Favicons:
.contact .inner .f-row:nth-child(1) .f-col:nth-child(1) a:before {
content: url(https://pixels.crd.co/assets/images/gallery13/031bf5c5.gif?v=29416114)
}
.contact .inner .f-row:nth-child(1) .f-col:nth-child(2) a:before {
content: url(https://pixelsafari.neocities.org/favicon/nature/star/star129.gif)
}
.contact .inner .f-row:nth-child(2) .f-col:nth-child(1) a:before {
content: url(https://pixelsafari.neocities.org/favicon/object/stationery/paper5.gif)
}
.contact .inner .f-row:nth-child(2) .f-col:nth-child(2) a:before {
content: url(https://pixels.crd.co/assets/images/gallery15/23f26d94.gif?v=29416114)
}
.contact .inner .f-row:nth-child(3) .f-col:nth-child(1) a:before {
content: url(https://pixelsafari.neocities.org/favicon/object/stationery/mail5.gif)
}
.contact .inner .f-row:nth-child(3) .f-col:nth-child(2) a:before {
content: url(https://pixelsafari.neocities.org/favicon/horror/coffin3.gif)
}
.contact .inner .f-row:nth-child(4) .f-col:nth-child(1) a:before {
content: url(https://pixels.crd.co/assets/images/gallery109/c95f21bd.gif?v=29416114)
}
.contact .inner .f-row:nth-child(4) .f-col:nth-child(2) a:before {
content: url(https://files.catbox.moe/re9m7i.webp)
}
Loading screen:
body:before {
content: " ";
height: 100vh;
width: 100vw;
display: block;
position: fixed;
top: 0;
left: 0;
z-index: 100;
background-image: url('https://tenor.com/en-GB/view/mcr-my-chemical-romance-gerard-way-kiss-blowing-a-kiss-gif-11487825809478744702');
background-size: cover;
background-repeat: no-repeat;
background-position:center;
animation: yourAnimation 1s ease 0s 1 normal forwards;
pointer-events: none;}
@keyframes yourAnimation { 0.0%{ opacity: 1;} 75%{ opacity: 1; } 100%{ opacity: 0;} }
by Randomised_Toast ⚞ • ⚟; ; Report
okay so autoplay code just disappeared??
by Randomised_Toast ⚞ • ⚟; ; Report
Okay so for my autoplay i use:
<-iframe width="0" height="0" src="https://www.youtube.com/embed/SMYnyVagypg//?&;amp;;autoplay=1&;loop=1&;controls=1" title="YouTube video player" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture" allowfullscreen="" loading="lazy">
(remove the - from -iframe i put it there so it wouldnt disappear)
Which is OUTSIDE of the tag and you put the link into the src="*here*"
I dont know how youre doing it cuz it disappeared but id rly check where the style tag is
by ⁺‧₊˚ ♱ 𝔸𝕝𝕦𝕔𝕒𝕣𝕕 ♱˚₊‧⁺; ; Report