|
|
---|---|
Posted by | Free CSS Template + Tutorial! |
katie 🍃 (#106445)
Warrior View Forum Posts Posted on 2019-01-25 23:49:10 |
ZodiacDragon (#184369)
Prince of the Savannah View Forum Posts Posted on 2021-02-05 11:25:58 |
Polaroid, the mfing Pie Lord (#163486) View Forum Posts Posted on 2021-02-05 11:26:51 |
ZodiacDragon (#184369)
Prince of the Savannah View Forum Posts Posted on 2021-02-05 11:42:09 |
Upsettingly very minimal progress has been made. I'm still having the pregnant lioness icon taking over problem. Edit: here is the dropbox link: https://www.dropbox.com/s/w2yd0ky432xli7u/Liodenbackground.css?dl=0 0 players like this post! Like? Edited on 05/02/21 @ 11:56:54 by ZodiacDragon (#184369) |
Polaroid, the mfing Pie Lord (#163486) View Forum Posts Posted on 2021-02-05 12:29:40 |
Demonic Ciel (G2 3x Ros Frail) (#198730) View Forum Posts Posted on 2021-02-05 14:17:53 |
It's more so, im not understanding all the labels in the CSS Dropbox link. Like all the 'Image link here' and the 'hex here' RGB : Code here and such. Like there is so much more then just what has been explained XD and the IMportant tags, some of those locations i didnt understand as well. 0 players like this post! Like? |
Polaroid, the mfing Pie Lord (#163486) View Forum Posts Posted on 2021-02-05 14:44:55 |
You don't need to worry about !important- it's just a way of making sure that the device prioritizes certain elements in the code We'll start with font-family: FONT CSS HERE; You need to get a specific link that has the code embedded into it. So if I wanted this font: https://fonts.google.com/specimen/Big+Shoulders+Display The CSS would be font-family: 'Big Shoulders Display', cursive; You'll also need to import the font (it's in the template as "@import url('FONT LINK HERE');") so the device knows what font you want (it has code embedded), so you'd also get this: @import url('https://fonts.googleapis.com/css2?family=Big+Shoulders+Display&display=swap'); Similar thing for hex and rgba colors! For example, when you see "color: #000000;" as in the template, you're going to get that hexcode color. You can switch it out with any hexcode, like this: "color: #ededed;" Same for the rgba. It's in the code like this: "background: rgba(0, 0, 0, 0.6);"- you can switch out the first 3 letters with any rgba, like this: "background: rgba(237, 237, 237, 0.6);". The 0.6 refers to opacity. Are you still confused?^^ 0 players like this post! Like? |
Demonic Ciel (G2 3x Ros Frail) (#198730) View Forum Posts Posted on 2021-02-05 15:27:14 |
Like here is what i have done, bc i am Confused. I plan to re-add the Credits, just removed bc they kept confusing me XD https://www.dropbox.com/s/02ntgoiqcnh6fgk/Lioden%20CSS.txt?dl=0 0 players like this post! Like? |
Polaroid, the mfing Pie Lord (#163486) View Forum Posts Posted on 2021-02-05 15:31:00 |
Oh! the /* example */ things are notes- they dont do anything to the css. the code should still work without them, they're just helpful labels 0 players like this post! Like? |
Demonic Ciel (G2 3x Ros Frail) (#198730) View Forum Posts Posted on 2021-02-05 15:35:02 |
There is so much writing in the thing, some things are repeated bc different Catagories, so i am a bit confused. yk? xD 0 players like this post! Like? |
Polaroid, the mfing Pie Lord (#163486) View Forum Posts Posted on 2021-02-05 18:20:40 |
Yeah! And like I said, it really is just personal preference, if you don't want to use it don't, as long as you leave katie's credit! 0 players like this post! Like? |
Ky (#211854)
View Forum Posts Posted on 2021-02-05 22:10:35 |
can someone help me make some hover boxes like 3 of them? i'm a bit dumb and don't understand what some of the stuff on the template is for 0 players like this post! Like? |
Polaroid, the mfing Pie Lord (#163486) View Forum Posts Posted on 2021-02-06 00:37:44 |
Copy+paste this into the territory description (without the *s): <*div class="boxcontainer"><*div class="Box1"><*h1>Title<*/h1>text<*/div><*div class="boxcontainer"><*div class="Box1"><*h1>Title<*/h1>text<*/div><*div class="Box1"><*h1>Title<*/h1>text<*/div><*/div> <*/div> And this into the CSS! /* BOXES (Copy paste to add more or less) */ .boxContainer { display: flex; flex-wrap: wrap; justify-content: center; overflow: hidden; } .Box1 { height: 100px; float: left; width: 31.9%; padding: 5px; background: rgba(32, 107, 96, 0.4); margin: 5px; font-size: 18px !important overflow: hidden; border-width: 2px !important; border-style: solid !important; border-color: rgba(237, 237, 237) !important; border-image: initial !important; transition: 2s; } .Box1:hover { overflow-y: auto; height: 400px; } 0 players like this post! Like? |
Abraxas (#97322)
Heartless View Forum Posts Posted on 2021-02-06 01:32:18 |
nvm! got it. thanks for the template 0 players like this post! Like? Edited on 06/02/21 @ 11:13:46 by Satryhorn(Sorens Alt.) (#97322) |
Ky (#211854)
View Forum Posts Posted on 2021-02-06 11:37:27 |
Polaroid, the mfing Pie Lord (#163486) View Forum Posts Posted on 2021-02-06 15:41:45 |
This is all you need to put for the HTML (obviously copy+paste/change to Box2, Box3, etc. as needed): <*div class="boxcontainer"><*div class="Box1">text<*/div><*/div> 0 players like this post! Like? |