magnavox_23: A close up of Rick wearing glasses. he has a finger resting against his lips, and a curious expession on his face. (Default)
'Adíshní Mags ([personal profile] magnavox_23) wrote in [community profile] style_system2024-05-29 06:17 pm

Creating a static width for entries

Hi all! I was pointed this way to possibly find help with what is probably a really basic style issue. I am wanting to know if there is a way to keep the width of my entries static across all devices? (I'd been happy with anything 600px +) My page looks great on the PC, but on a tablet, the width of my entries shrinks and it throws out the placement of my artwork.

Desktop:


Tablet:


This is the theme I am using:


I have a paid account, and I've had a play around with the customize your theme option, but no luck, and I only know very basic html and css. Any help or advice would be very appreciated!

wychwood: chess queen against a runestone (Default)

[personal profile] wychwood 2024-05-29 02:57 pm (UTC)(link)
I would really recommend not going for an actual fixed-width layout - it might look great on your computer, and even your tablet, but it's likely to be entirely unreadable on mobile (or even a smaller tablet). You can probably find an option to make the centre column a larger percentage of the total width, which will help that specific use-case but the line-breaks are still going to be in different places on smaller screens.

Why not just put all the icons in, effectively, a single row, and let the line-breaks fall naturally? That will at least prevent the "just one icon every other row" issue you have on the tablet view here, so the rows will all be equal length (except the last!).
wychwood: chess queen against a runestone (Default)

[personal profile] wychwood 2024-06-03 10:18 am (UTC)(link)
Are you suggesting I have no line breaks between any of my icons, and have them natural sit across whatever width the entries are?

Yes, exactly. If they have to be consistent, you'll have to live with the awkward line breaks, I'm afraid!

Column width - looking at your layout, the reason it's not full width is this:

@media only screen and (min-width: 45em) {
    #content {margin:0 15%; padding:0;}


So if you set a rule in Customize Journal Style -> custom CSS to set the margin to 0% or something, that should make it wider. Hopefully.
wychwood: chess queen against a runestone (Default)

[personal profile] wychwood 2024-06-03 10:30 am (UTC)(link)
Go to Customize Journal Style; find the "custom CSS" section (it's labelled); paste in the rule I showed you and change the margin % to whatever number you want.