There's lots of stuff I want to add to my page but have no idea how. Here's a list.
Semi-transparent main background (the one infront of the left-right background)
Custom cursor (fiddled with it. did not work.)
Autoplaying, looping background music (fiddled with this too. did not work.)
"Interest" tab borders
edit: Forgot to add that I'd like to make the contact/links tab disappear aswell
edit 2: I've managed all of this except the cursor (which I didn't really care for anyways lol)! thanks to everyone who helped me :)
need help with alot of coding
0 Kudos
Comments
Displaying 2 of 2 comments ( View all | Add Comment )
notahollabackgurl
loop music
|
v
it seems easy 2 loop music right? no.. cuz u cant use the embed link youtube gives u! u have to copy the last few letters and numbers on the link of the video NOT THE EMBED LINK!! click on the search bar and you will see the youtube code u need 2 copy (if u dont know where it is it comes after "/watch?v=" remember do not use the embed link!! use the link on ur search bar!! if u use the embed link it will not loop at all!
idk if the code I put disappeared but if it did this blog will help u to loop music :https://blog.spacehey.com/entry?id=727182
Report Comment
#1 BOYFAILURE
i can help with the semi-transparent background!
to make background colors semi transparent, you have to use rgba values.
here is an example using blue as the background color:
background: rgba(0, 0, 255, 0.8);
the "0.8" is the percentage of the opacity. the higher it is, the more opaque it becomes. so 0 is transparent and 1 is fully opaque.
you can apply this property to anything and it'll work, i think.
to find the rgba values of colors, you can use this website
sorry if this isn't what you're looking for!
Report Comment
oh and here's the code for the main background
main {
background: rgba(0, 0, 255, 0.8);
}
by #1 BOYFAILURE; ; Report
thank you, I managed to make all the content transparent but I'd prefer it just be the main bg
by danysaurus; ; Report