updates

14/03/22 this site was created
22/03/22 i redid the design
14/03/22 changed to a simpler
design ; ib ishimori
29/03/22 eerm accidentally deleted the
entire thing but i saved it on pastebin
30/03/22 added, fixed, and removed stuff
23/05/22 changed the photo
27/05/22 changed to an even simpler
design ; cr mariposa
28/05/22 added more fonts + a
menu area + more misc codes
05/09/23 updated links (resources), added more to music players and link codes

svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHg9IjAiIHk9IjAiIHZpZXdCb3g9IjAgMCA1MDAgMjUwIiB3aWR0aD0iNTAwIiBoZWlnaHQ9IjI1MCIgcHJlc2VydmVBc3BlY3RSYXRpbz0ibm9uZSI%2BPHJlY3QgZmlsbD0idHJhbnNwYXJlbnQiIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiLz48L3N2Zz4%3D

text codes bouncy textmarquee textwobbly textfloating textshaky textpop texttext scramblerubberband textglitch textnews tickerbubble textjerky textflirty textbubble text (2)glitch texttext w image as the bgtumblr wobble texttilting text stitch textrolling text sideways bounce text

link codes question mark hoverexpandenlarge textfloatblurwipedownsound effecttooltipticker

img codes zoom in blurglitchtwitchshakefloatingfog maskdouble border'drawn' borderlace borderpink lace bordergreyscalerotatestar maskhrt maskwobblespinningtooltippop imgcustom image fall pastel blue lace border

scrollboxes borderlessskeweddash borderlace borderrounded edgesscrollbox with markretro scrollbarimg/gif bgbow borderinvis scrollbartwo fonts in a scrollboxhover to reveal scrollboxipod crd scrollbarlouv crd scrollbarhitoshi ju mp scrollbarexpand on hovertitle disappears on hover hover to reveal scrollbox 2

menus
jake's blur menusgina crd menudropdown menuestrellita menuclaris crd menuintruosers menuslide up containertabs thingylimonsyal menulala menu

misc codes typing tab titlemarquee tab titledisable left click + alertdraggable divwebsite counterwindows title alert messageimg clicksplosionTV filtercustom cursorscustom selectionthis thingflip crdyui crdmagica hearts lippies crdcustom image fall

♪♪♪ corazon music player • cr ramdonssanrio music playerdraggable music playerspinning cd playerkill bill playersimple music playernotebook crd music playernako ju mp music playerspeaker music playerkyomoto crd music player

how to add fonts!

click on the images for visual steps

PRO STANDARD:
(option 1)
1. pick out your font then copy & paste the code into an embed
2. put your text in between the "> <"
(ex: <div id="id">text goes here</div>)
3. if this isn't included in the code, then copy & paste it under "</style>" and match the "id" to what ever the #id in your code is (you can also change it but they must match)

(option 2)
1. pick out your font then copy and paste the code into an embed
2. for the text you wanna apply the font to, click the gear on your text settings (at the top) and copy the ID (ex: #text01)
3. replace the ID in your code to the one from your text & type whatever u want in the text!

PRO PLUS:
(option 1)
1. pick out your font then copy & paste the code into an embed
2. copy the style id from your code and into your text settings (or vice versa)

(option 2)
1. pick out your font then copy & paste the code into an embed
2. put "font-family: name of font;" into the style settings of your text

back to tuts

how to make & download fonts!

click on the images for visual steps

you will need a dropbox account to do this! no, you don't have to pay
it's best & most recommended to do this on desktop

1. find a site where you can download fonts for free, a popular one is dafont.com which i will be using here
2. download any font you come across that you like
3. open your files app, if the folder with the font is zipped then unzip it (this process is different depending on your device, i suggest following a yt video)
4. upload the .otf or .ttf file from the folder onto dropbox
5. once it's done uploading, copy the link & replace the 'www.' to 'dl.' & delete the '?dl=0' at the end
6. set up your code, giving it a @font-face, style #ID, naming your font, & inserting the link (example in the pictures). make sure your font-family under the ID and font-face match!!
7. if needed, add div tags. tutorial for adding custom fonts into carrds is here

! STEP 3 IS NOT PICTURED !
this step is different for everyone

back to tuts

how to position elements!

PRO STANDARD:
1. insert what ever code you're using into an embed
2. in your style settings (under the ID), copy & paste the following:
position: relative;
z-index: 100;
top: 10px;
3. you can change 'top' to bottom, left, or right. whichever one you put, the element will be pushed from there
to specify:
top = element will be pushed downwards from the top
bottom = element will be pushed upwards from the bottom
left = element will be pushed rightwards from the left
right = element will be pushed leftwards from the right
4. you may also play around with the number (after the direction) by making it bigger or smaller depending on how much you want the element pushed, do not delete the 'px'

PRO PLUS:
1. insert whatever element you plan on moving (i'm positioning text over an image)
2. in your element's style settings add the same bolded code from the standard tutorial
3. mess around with the number (after the direction) to position it how you'd like!

back to tuts

how to rotate elements!

PRO STANDARD:
(option 1)
1. create a code with your element (i'll be using text)
2. under the ID add this:
transform: rotate(-20deg);
3. play around with the number! if you wanna rotate your element the other way, remove the - in front of it (ex: 20deg)

(option 2)
1. match the ID of your element from advanced settings to a code
2. add transform: rotate(-20deg); under the ID in the code
3. publish it and change to your liking!

PRO PLUS:
1. set up whatever element you're rotating
2. add transform: rotate(-20deg); under the style settings
3. play around with it until you like it!

back to tuts

how to change the audio in a music player!

you will need a dropbox account to do this! no, you don't have to pay
it's best & most recommended to do this on desktop

1. copy the link of a song/audio you want from youtube
2. paste the link onto this site & download it to your device as an mp3
3. upload the song file into dropbox
4. copy the link & change the 'www.' to 'dl.' & delete everything past mp3 at the end
5. paste your modified link into the audio source of your music player & you're done!

dropbox links don't work with glenthemes music
players anymore, check here for different ways to
apply music to them

back to tuts

how to make text & containers scrollable!

click on the images for visual steps

PRO STANDARD:
for text:
1. set up your embed as you would a usual text
2. match the style ID to the one of your text
3. add the following under your style ID -
overflow: auto;
height: pick your desired height px;
width: pick your desired width px;

for container:
1. set up an embed similar to the one for text
2. match the style ID to the one of your container
3. add the following under your style ID -
overflow: scroll;
height: pick your desired height px;
width: pick your desired width px;

PRO PLUS:
for text:
1. set up your text & add the highlighted content from the pro standard tutorial into your style settings

for container:
1. place a container and under your style settings add the highlighted content from the pro standard tutorial

back to tuts

how to put a border on your elements!

~ this looks best on containers & images
but works on mostly everything!

PRO STANDARD:
1.
2.
3.

PRO PLUS:
1.
2.
3.

back to tuts

how to put a border on the top of your page!

this works on carrd free & pro

1. set the background of your carrd as an image & insert the picture you want
2. set position to top
3. set tile to horizontal
4.the size setting isn't important but you can mess with it until it fits your liking

back to tuts

image04
image05

If you found this, congrats
admin info