|
|
---|---|
Posted by | ✦•Pandora and Kat's CSS Codes•✦ |
Pandora (#144118) View Forum Posts Posted on 2022-03-28 22:47:40 |
✦•Pandora and Kat's CSS Codes•✦ WELCOME! CODES RESTORE OLD PLAYER BOX Q&A/RULES
12 players like this post! Like? Edited on 14/03/24 @ 19:34:27 by Pandora (#144118) |
Coen (Interstellar withered) (#250872) Aztec Knight View Forum Posts Posted on 2022-06-07 16:10:00 |
Ill pm you iit a couple mins if thats ok? I just need to re add the forground 0 players like this post! Like? |
Pandora (#144118)
View Forum Posts Posted on 2022-06-07 16:13:51 |
Coen (Interstellar withered) (#250872) Aztec Knight View Forum Posts Posted on 2022-06-07 16:24:27 |
Hey sorry for the inconvenience, I just tried both CSS again before I PMed you and they have both decided to work an make me look stupid. Thank you for responding and ill be sure to get in touch if i need any further assistance 0 players like this post! Like? |
Pandora (#144118)
View Forum Posts Posted on 2022-06-07 16:26:10 |
Coen (Interstellar withered) (#250872) Aztec Knight View Forum Posts Posted on 2022-06-07 16:30:42 |
Coen (Interstellar withered) (#250872) Aztec Knight View Forum Posts Posted on 2022-06-09 16:54:42 |
Hi im back and in need of help again (Actual help this time!) basically im using a different tutorial this time to make a code myself but the tutorial doesnt explain how to change the opacity of the forground. im wanting to make the following more transparent and any help is appreciated .col-md-9.col-xs-12 { background: #6C533A !important; border: 4px double #91AFC2 !important; border-top: none !important; border-right: none !important; border-bottom :none !important; } div.container.main { background: #110B02 !important; border: 4px double #91AFC2 !important; border-left: none !important; } 0 players like this post! Like? |
Pandora (#144118)
View Forum Posts Posted on 2022-06-09 17:10:01 |
Ok simple fix! .col-md-9.col-xs-12 { background: rgb(108, 83, 58, 0.9) !important; border: 4px double rgb(145,175,194, 0.9) !important; border-top: none !important; border-right: none !important; border-bottom :none !important; } div.container.main { background: rgb (17, 11, 2, 0.9) !important; border: 4px double rgb(145,175,194, 0.9) !important; border-left: none !important; } For changing the opacity of something, you'll want to add 'rgb ( #, #, #, 0.9 )' instead of '#00000,' and the '0.9' at the end controls the opacity! ( 0.1 being the lowest opacity, 0.9 being the highest) 0 players like this post! Like? |
Coen (Interstellar withered) (#250872) Aztec Knight View Forum Posts Posted on 2022-06-09 17:11:24 |
Awesom thank you so much! Ill be sure to edit this once i get back onto my pc! 0 players like this post! Like? |
Pandora (#144118)
View Forum Posts Posted on 2022-06-09 17:12:11 |
Coen (Interstellar withered) (#250872) Aztec Knight View Forum Posts Posted on 2022-06-10 16:38:12 |
Hi so i used the rgba thing that you said to use but it doesn't seem to be working 0 players like this post! Like? |
Pandora (#144118)
View Forum Posts Posted on 2022-06-10 16:57:58 |
Oh no! If you send on over the section that doesn't seem to be working I can take a look at it for you! 0 players like this post! Like? |
Coen (Interstellar withered) (#250872) Aztec Knight View Forum Posts Posted on 2022-06-10 17:00:27 |
.col-md-9.col-xs-12 { background: rgb(108, 83, 58, 0.3) !important; border: 4px double rgb(145,175,194, 0.3) !important; border-top: none !important; border-right: none !important; border-bottom :none !important; } div.container.main { background: rgb (17, 11, 2, 0.3) !important; border: 4px double rgb(145,175,194, 0.3) !important; border-left: none !important; } The Transparency doesn't seem to have changed on my den page unless im being stupid and it has 0 players like this post! Like? |
Pandora (#144118)
View Forum Posts Posted on 2022-06-10 17:12:54 |
Here you go! .col-md-9.col-xs-12 { background: rgb(108, 83, 58, 0.3) !important; border: 4px double rgb(145,175,194, 0.3) !important; border-top: none !important; border-right: none !important; border-bottom :none !important; } div.container.main { background: rgb(17, 11, 2, 0.3) !important; border: 4px double rgb(145,175,194, 0.3) !important; border-left: none !important; } You had a space between the 'rgb' and the parentheses! 0 players like this post! Like? |
Coen (Interstellar withered) (#250872) Aztec Knight View Forum Posts Posted on 2022-06-10 17:13:47 |
ratacia (#279652)
Sapphic View Forum Posts Posted on 2022-06-18 16:32:39 |