1 |
|
---|---|
Posted by | Help with boxes? |
Ron Stampler (Business Man) (#169528) Total Chad View Forum Posts Posted on 2024-07-24 18:15:29 |
๐๐ธ๐ธ๐ด ๐ช๐ฝ ๐ฝ๐ฑ๐ฎ ๐ผ๐ฝ๐ช๐ป๐ผ ๐ฒ๐ท ๐ฝ๐ฑ๐ฎ ๐ซ๐ฒ๐ฐ ๐ซ๐ต๐ช๐ฌ๐ด ๐ฒ๐ท ๐ฒ๐ท๐ด... โโโโฆโเผปBox Testเผบโโฆโโโ โ `This is just a test โ `This is just a test โฐโค[๐ฃ๐ฎ๐ต๐ต ๐ถ๐ฎ ๐๐ฑ๐ช๐ฝ ๐๐ธ๐พ ๐ฏ๐ฎ๐ฎ๐ต] โโโโฆโเผปBox Testเผบโโฆโโโ โ `This is just a test โ `This is just a test โฐโค[๐ช๐ท๐ญ ๐ฝ๐ฎ๐ต๐ต ๐ถ๐ฎ ๐๐ฑ๐ช๐ฝ ๐๐ธ๐พ ๐ฝ๐ฑ๐ฒ๐ท๐ด...] Hello! Is there any way I could change the shape of the boxes? Also! If not, is there any way I could make them side-by-side? Can someone also please show me how to add a background inside of the boxes instead of having just hexcode? I would like to note that I did this on computer and have no idea how it looks like on mobile, so I'm really crossing my fingers with what I have so far.
0 players like this post! Like? |
Jack | G2 Jellyfish Prion (#98461) View Forum Posts Posted on 2024-07-24 18:36:34 |
Hey! This might not work, kinda ass at html, but try grouping the two boxes together as a table. <*table border="0" width="600"><*tr><*td> (Unsure if width = 600 is the correct size, fiddle with it a bit- since itโs only two boxes, itโll probably be smaller now that I think of it. Try 300-400?) โThen, put the html content of one box hereโ- <*/td><*td> โ Html content of box 2 hereโ- <*/tr><*/td><*/table> As for the background, can you replace โbackground:rgba(#,#,#,#);โ with โbackground:url(โinsertlinkhere.jpeg/png');โ forgive me if that doesnโt work, a lot of html I do is by trial and error, and not currently on my computer to properly test anything haha 1 player likes this post! Like? |
Jack | G2 Jellyfish Prion (#98461) View Forum Posts Posted on 2024-07-24 18:37:59 |
Oh! If seeing where the table is is giving you any trouble, change the table border to a visible number like 1 or 2, just as a guide to where everything is. You may have to fiddle with both the width of the table and the boxes themselves a bit. Then you can set that back to 0 once everything is in its place. 2 players like this post! Like? |
Ron Stampler (Business Man) (#169528) Total Chad View Forum Posts Posted on 2024-07-25 15:09:15 |
So now I got the table working, I edited it a bit using a mixture of other things online to have it centered and to be able to change the border. <*table style="border:1px dashed #EEF0FE;margin-left:auto;margin-right:auto;" background= "https://i.pinimg.com/originals/ea/88/eb/ea88eb1906372435e999a3b76f1c89e4.jpg" height= "350px" width="600px"><*tr> <*td><*p style="text-align:center;font-family:Constantia;"><*font color=#EEF0FE>Table side left<*/font><*/p><*/td> <*td><*p style="text-align:center;font-family:Constantia;"><*font color=#EEF0FE>Table side right<*/font><*/p><*/tr><*/td><*/table> 0 players like this post! Like? |
Jack | G2 Jellyfish Prion (#98461) View Forum Posts Posted on 2024-07-25 15:19:07 |
Okok for that I tend to just put a div box *inside* the table. Like, grab the code for the boxes you had and put them where โtable side leftโ and โtable side rightโ are Or alternatively, according to the internet you can put <*td style="vertical-align: top;"> 1 player likes this post! Like? |
Ron Stampler (Business Man) (#169528) Total Chad View Forum Posts Posted on 2024-07-25 15:37:32 |
Jack | G2 Jellyfish Prion (#98461) View Forum Posts Posted on 2024-07-25 15:39:44 |
1 |
---|