|
|
---|---|
Posted by | Free CSS Template + Tutorial 2.0 (2023) |
katie 🍃 (#106445)
Warrior View Forum Posts Posted on 2022-12-29 04:57:14 |
Welcome to the new and updated version of my CSS template + tutorial!
My original from 2019 is still usable, but a bit outdated and needed some polishing. > VIEW/DOWNLOAD THE TEMPLATE HERE < Rules: • This template may be used for anything and everything - free codes, pre-mades, commissions, you name it. • Please leave the credit in the template intact, unless your coding becomes unrecognizable from it. • This is a guide for CSS coding, not things like image hosting or photo editing. Please use Google if you need help with things like that. • Feel free to show me CSS you made using my template! It makes me happy. Resources: • W3Schools Always go here first. Anything and everything you need to know about CSS is here. • Live CSS Editor (Chrome) Allows you to see changes to your CSS instantly, great for when you're working on your code. • Unsplash & Pexels Great high quality, free to use backgrounds. • Google Fonts Fonts MUST be from here to work in the template. • Color Palette from Image & Gradient from Image Generates a color palette or gradient based on your background image. • Color Picker For hex or RGBA codes. Coding Things to Keep in Mind: • The background of an element controls the solid color behind it, the color of an element controls the text. • In RGBA codes, the decimal controls transparency of the element. For example, rgba(1, 1, 1, 0.5) = 50% transparency. 1 = opaque, 0 = invisible. • Aim for readability. Cursive fonts are great for headers, but are hard to read in description text. • Avoid creating eye-burning CSS or a page that may harm others. Be mindful of intensely bright colors, flashing images, etc. Other people have to see your den too! Tutorial 107 players like this post! Like? Edited on 15/05/23 @ 16:23:01 by katie 🌿 (#106445) |
{Shamhna} 🎃 [M] (#5131)
Majestic View Forum Posts Posted on 2023-03-28 04:51:00 |
It took forever BUT I finally figured out how to make CSS on my phone! Thank you for posting the template! 0 players like this post! Like? Edited on 09/04/23 @ 12:19:48 by {Shamhna, T.P.Q}🎃[M] (#5131) |
Raven (#263936)
Impeccable View Forum Posts Posted on 2023-03-28 12:48:52 |
is there any way to change the energy/side bar stuff separately colored from the rest? and is there a way to change the gift icon? 0 players like this post! Like? |
Vire [0gb/???gb] (#284463)
Sapphic View Forum Posts Posted on 2023-03-29 12:35:41 |
RVS0RNE (#416992)
Mean View Forum Posts Posted on 2023-03-30 01:26:48 |
I'm having trouble with the Logo part of Lioden, as well as modifying the design for the "Chatbox" section of the CSS. Does anyone know how to help?? 0 players like this post! Like? |
Angel (#328722)
Majestic View Forum Posts Posted on 2023-04-03 19:36:45 |
I have tried everything i have looked through the entire thread fixing everything I saw here is the drop box Dropbox link I was putting this into my territory description pastebin link And here is my CSS Editor I was working with along with notepad CodePen Editor This has been frustrating me for the past 3 hours if someone could let me know where or how im going wrong that would be greatly appreciated 0 players like this post! Like? Edited on 03/04/23 @ 19:37:37 by Angel (#328722) |
Ciber ! | G3 Ankh Overo (#312159) Heavenly View Forum Posts Posted on 2023-04-04 03:25:18 |
Hey! Your issue appears to be very vague (you never truly specified). You put <link rel="sheetstyle" instead of <link rel="stylesheet". That's what appears to prevent your css from working on your den. I tested your css out on my side and that fixed the issue. 0 players like this post! Like? |
FreeDino9568 (#206615)
Aztec Knight View Forum Posts Posted on 2023-04-07 08:46:16 |
lenni (#285536)
Cursed View Forum Posts Posted on 2023-04-07 18:41:23 |
I'm having trouble with the fonts. It seems to only work with arial and times new roman. Are there only certain fonts you can use for Lioden CSS? Any of the fonts I choose from google fonts do not work and just revert to times new roman or arial. 0 players like this post! Like? |
Ciber ! | G3 Ankh Overo (#312159) Heavenly View Forum Posts Posted on 2023-04-08 06:53:15 |
@Lenni Any fonts from google do work. You are likely adding them to your css wrong. In this case, lets say I am using “Dancing Script” (a cursive font) off of google. Where you import the font URL (the @import url) will be 'https://fonts.googleapis.com/css2?family=Dancing+Script&display=swap' Or whatever is respective on the font you are using. It is found under the @import tab. When you do the font family sections, just under the @import you’ll see a separate section, you’ll see “ CSS rules to specify families”. In the box for that section is what will go in font family wherever it applies. For example, the CSS rule for Dancing Script is: font-family: 'Dancing Script', cursive; There’s likely something you missed when importing your font. 0 players like this post! Like? |
lenni (#285536)
Cursed View Forum Posts Posted on 2023-04-08 07:42:39 |
I am trying to have multiple fonts in my CSS. Is that the issue? For example, I wanted to change the header where it displays your den name and different font. This is the coding I have for it: color: #696b5b; font-size: 40px; text-align: center; font-family: 'times new roman'; text-transform:uppercase; However, when I change the font family to a different font, for example, font-family: 'Barlow', sans-serif; it doesn't work. I haven't been importing the URL, since it hasn't said to do so. Is that the issue? 0 players like this post! Like? |
✂️snip ✦ g1 ice corrupted 10BO (#115923) Evil View Forum Posts Posted on 2023-04-08 10:36:03 |
hi katie!! i recently learned how to use css and wanted to ask, which part of the template dictates the color of the chatbox bubble when someone pings you? thank you! mine rn is somehow yellow and it's hard to read with the text color i've chosen edit: is it possible to exclude the chatbox from the rest of the css so that it shows the default font/color/etc? thank you! thank you! 0 players like this post! Like? Edited on 08/04/23 @ 22:06:29 by ✂️snip ✦ g2 ice felis (#115923) |
☾𝑵𝒚𝒙☆ (dm me “Melon”) (#420491) Dreamboat of Ladies View Forum Posts Posted on 2023-04-08 15:35:10 |
Ciber ! | G3 Ankh Overo (#312159) Heavenly View Forum Posts Posted on 2023-04-08 18:34:17 |
@Lenni Multiple fonts may be the issue. You also do need to do the @import url at the very beginning of the CSS code where it applied, as it says in step 3. 0 players like this post! Like? |
lenni (#285536)
Cursed View Forum Posts Posted on 2023-04-08 22:34:18 |
Yes, I see now, thank you. Am I unable to do multiple fonts, though? 0 players like this post! Like? |
Mynyx (#343927)
Merciful View Forum Posts Posted on 2023-04-10 04:00:33 |
I dont understand the boxes part?? I suck at coding XD 0 players like this post! Like? Edited on 10/04/23 @ 04:06:02 by Mynyx (#343927) |