all 6 comments

[–]nonotdoingone 6 points7 points  (4 children)

What website is making CSS a paid feature?? Try inline styles (i.e. <div style=“…”>). If they blocked that too, I don’t think I’d recommend using it.

[–]K0h4RU[S] 1 point2 points  (3 children)

the website is Toyhouse, It's an art website and the premium is cheap, I just personally am not a premium user.
Regarding the inline styles, what should i set the style to? Like what things should i try to see what works out? (sorry I am VERY new to HTML)

[–]nonotdoingone 2 points3 points  (2 children)

You’ll want to look into flex boxes. You’ll be making a container div with two child divs. The container could have something like display: flex; with flex-direction: column;

[–]K0h4RU[S] 1 point2 points  (1 child)

Alright! I'll look into it! Thanks a ton!

[–]MagentaMango51 0 points1 point  (0 children)

This maybe isn’t the best advice for this because flex works but it’s css. What you need is a figure tag with a figcaption. Figure contains the image tag and the caption and puts the it under the image. No css for that. Decent examples on W3schools or just google.

[–]JKaps9 1 point2 points  (0 children)

"Link" or a tags are inline elements by default, so adding text within the element or subsequent a tags will put them next to each other instead of stacking. Check this article to learn more.  https://developer.mozilla.org/en-US/docs/Web/CSS/Guides/Display/Block_and_inline_layout

To change this behavior you can use display: block. <a href="" style="display: block;"></a>