|
|
---|---|
Posted by | Free CSS Template + Tutorial! |
katie π (#106445)
Warrior View Forum Posts Posted on 2019-01-25 23:49:10 |
Polaroid, the mfing Pie Lord (#163486) View Forum Posts Posted on 2020-09-13 18:33:42 |
thank you! still fixing up a few things though yep, that's what I meant! is there a way to change the opacity of the top layer? 0 players like this post! Like? |
Ater πΊ [Project] (#206739)
Cursed View Forum Posts Posted on 2020-09-13 19:03:43 |
Neat! If you mean the green layer, you have this on your code: .container.main { background: rgba(14, 94, 9, 0.6); border: none; box-shadow: none; border-radius: 5px; } The bold number refers to the amount of opacity; 0 is fully transparent and 1 is fully opaque! I hope this was what you were asking for aksjdl Also sorry for the late reply, and you're not bugging me! I'm just happy to help. 0 players like this post! Like? Edited on 13/09/20 @ 19:04:21 by Ater πΊ CL DF Madagascar (#206739) |
Polaroid, the mfing Pie Lord (#163486) View Forum Posts Posted on 2020-09-13 19:08:20 |
okay! makes sense. couple more questions and then, for the topbar with welcome back ___, and the den/crossroads etc. how do I recolor those? and for the headers, like my queen's name, it's a blue thats hard to read, how do I change that? and the boxes I want in the code aren't showing up? 0 players like this post! Like? |
π΅ SpicyKale π΄ (#184461)
View Forum Posts Posted on 2020-09-13 19:14:50 |
if you mean the text, you'll see in the section topbar there is both a rgb and a hex colour like (#13ab8) if you change the hex colour that will change the text 0 players like this post! Like? |
π΅ SpicyKale π΄ (#184461)
View Forum Posts Posted on 2020-09-13 19:15:46 |
Ater πΊ [Project] (#206739)
Cursed View Forum Posts Posted on 2020-09-13 19:20:00 |
Ok so, for the topbar, there's apparently one character messing up right after this: /* TOPBAR ("Welcome back, ___"), NAVBAR (Den/Crossroads/Etc.) */ So go to the end of that line and delete until you get to the final /, don't delete that though. Also, here: .topbar { background: rgba(40, 158, 33, 0.6); border: none; border-top: none; color: #ededed; font-family: 'Pathway Gothic One', sans-serif; }[weird blank character] The bold ";" is missing. Also, delete the "weird blank character" noted (it's literally blank, so delete the "space"). Also, another ";" missing on the end of the .navbar background color! Give me a sec to check the rest. For the header, add this: h1 { color: #000000; font-size: 72px; text-align: center; } Of course you can also change the font size and the text alignment (can be left, center or right). Can I see how are you adding the boxes on the description? 0 players like this post! Like? Edited on 13/09/20 @ 19:23:49 by Ater πΊ CL DF Madagascar (#206739) |
Polaroid, the mfing Pie Lord (#163486) View Forum Posts Posted on 2020-09-13 21:55:54 |
okay, that's all fixed. this css is in my stylesheet, the boxes are not showing up. warning:long 0 players like this post! Like? |
Polaroid, the mfing Pie Lord (#163486) View Forum Posts Posted on 2020-09-13 21:55:54 |
okay, that's all fixed. this css is in my stylesheet, the boxes are not showing up. warning:long 0 players like this post! Like? |
Ater πΊ [Project] (#206739)
Cursed View Forum Posts Posted on 2020-09-13 22:13:48 |
It all seems okay, how do you have the markup on your den description? Should be something similar to: <*div class="Box1">STUFF<*/div> without the *, on your den description, not the CSS file. I also saw you have Box2 repeated on your CSS, delete the first copy (right after the ending of .Box1{STUFF} until right before /* HOVER BOX (SIZE WHEN HOVERING OVER) */ .Box1:hover {STUFF}). On .Box1 there's also a typo, it says overflow:h, should be overflow:hidden. Also, on the code you pasted, transition: 3s is missing the ;, this is, should be transition: 3s;. 0 players like this post! Like? Edited on 13/09/20 @ 22:14:40 by Ater πΊ CL DF Madagascar (#206739) |
Polaroid, the mfing Pie Lord (#163486) View Forum Posts Posted on 2020-09-13 22:26:13 |
I didn't actually have anything in my description, what should that be? ive noticed some codes have hover boxes that come in the css, how do I do that? I also wasn't able to find the overflow:h issue even with ctrl+f also, just want to thank you again, youre a HUGE help 0 players like this post! Like? |
Ater πΊ [Project] (#206739)
Cursed View Forum Posts Posted on 2020-09-13 22:35:46 |
Oh, I thought because of the divs with class="scrollBox" askldjas I guess that's from other place. Before proceeding though, what layout are you wanting to accomplish? Like, how many boxes, side by side or one per line? Btw, I'd recommend to delete the following: /* HOW FAST HOVER BOX EXPANDS TO FULL SIZE */7 } It's right after .Box1. Or at least the 7 and the extra }, it'll cause problems. Also don't worry askldjlas I love helping out 0 players like this post! Like? Edited on 13/09/20 @ 22:37:26 by Ater πΊ CL DF Madagascar (#206739) |
Polaroid, the mfing Pie Lord (#163486) View Forum Posts Posted on 2020-09-13 22:36:56 |
Ater πΊ [Project] (#206739)
Cursed View Forum Posts Posted on 2020-09-13 22:43:32 |
Ok so, all the same size? Also I edited my reply before this one asjdak 0 players like this post! Like? |
Polaroid, the mfing Pie Lord (#163486) View Forum Posts Posted on 2020-09-13 22:45:51 |
yeah, all the same size. and maybe a larger one that matches the combined width of both on the bottom 0 players like this post! Like? |
Ater πΊ [Project] (#206739)
Cursed View Forum Posts Posted on 2020-09-13 22:51:36 |