inherit
257893
0
Nov 21, 2024 7:30:31 GMT -8
Nightfade
18
March 2019
nightfade
|
Post by Nightfade on May 25, 2022 11:05:15 GMT -8
I am not sure if this is the right place to ask, so let me know if it isn't and I will delete the post. I have no idea where to start with BBCode. Every place I seem to look go over the very basics, like text size, text color, bold, underline, ect. I know how to do that, well I forget and its easy enough to look up an recreate. However, I cannot find anything on how to create text areas, (I am not sure if its called that in BBC) If I see it like by itself without out anything else, is what helps me learn it. Cause if all the other code around it confused me. But if codes is like [img width=500 height=500]image url[/img] I understand that it is making whatever URL the image is linking, its going to be 500 (is it in px?) wide and 500 in height. But the more code with it, the harder it is for me to understand what is going on. I get overwhelmed by it all. Therefore, when I look at a code showing how they made a textbox I cannot quite figure it out. I get confused by it all. How do you create a box where the text goes?I do think I understand how to mess with the padding of boxes to get what I want to get, so I think I just need to know the basic code of how to create the box. (for anyone wondering this is what I am trying to do.)
|
|
Kami
Forum Cat
Posts: 40,198
Mini-Profile Theme: Kami's Mini-Profile
#f35f71
156500
0
Offline
Jul 24, 2021 11:48:29 GMT -8
Kami
40,198
July 2010
kamiyakaoru
Kami's Mini-Profile
|
Post by Kami on May 25, 2022 11:24:10 GMT -8
The reason you're probably having an issue finding a how-to is because "text area" is not "place where text is displayed" but rather a multi-line input area for text (as opposed to a text field which is a single line). This mockup isn't possible with standard BB Code — Tabs require javascript to switch between them, so you'd need to use a plugin like the style tags or tabbed sections in post plugin (and if you're not the forum admin, they or a member of their staff would have to install it). The easiest way to do this would likely be with the [div] tag, or if you're not concerned about being mobile-friendly, with tables. Depending on the method you use, simply would place text in a div or in the specific cell (td) you want the text to appear. Something like this (though obviously, no tabs because it's not possible with BB Code alone): [table][tbody][tr][td rowspan="2"][img src="https://emoji.slack-edge.com/T6GDLMBCM/wave-kitty/0157e99c6673b4c1.png" style="max-width:100%;" class="fr-fic fr-dii"][/td][td]Text here[/td][td rowspan="2"][img class="fr-fic fr-dii" src="https://emoji.slack-edge.com/T6GDLMBCM/wave-kitty/0157e99c6673b4c1.png" style="max-width:100%;"][/td][/tr][tr][td rowspan="2"]text here[/td][/tr][tr][td rowspan="2"][img src="https://emoji.slack-edge.com/T6GDLMBCM/wave-kitty/0157e99c6673b4c1.png" class="fr-fic fr-dii" style="max-width:50%;"][/td][td rowspan="2"][img style="max-width:50%;" src="https://emoji.slack-edge.com/T6GDLMBCM/wave-kitty/0157e99c6673b4c1.png" class="fr-fic fr-dii"][/td][/tr][/tbody][/table]
|
|
inherit
257893
0
Nov 21, 2024 7:30:31 GMT -8
Nightfade
18
March 2019
nightfade
|
Post by Nightfade on May 25, 2022 11:42:07 GMT -8
Ah, okay. That makes much more sense. I have limited experince with BBcode. I am still kinda learning html (And know a little bit of python not much tho)
I did think about using tables but didn't know you could use span. This helps me a lot. Thank you very much
|
|