WelcomeUser Guide
ToSPrivacyCanary
DonateBugsLicense

©2024 Poal.co

1.4K

I'm trying to get the picture of a post and the up down vote button centered preferably below the text of the posts on /s/improve. So far I got the text to center but am having trouble getting the rest to come along.

div .post { color: orange; text-align: center; line-height: 0.8; }

This is what I'm using to center the text. Please help me learn what I'm missing.

I'm trying to get the picture of a post and the up down vote button centered preferably below the text of the posts on /s/improve. So far I got the text to center but am having trouble getting the rest to come along. div .post { color: orange; text-align: center; line-height: 0.8; } This is what I'm using to center the text. Please help me learn what I'm missing.

(post is archived)

[–] 1 pt

Best i can figure out, there is a property to switch from left to right with

.misctainer {

float: left;// left or right

}

what your asking for is to move .misctainer below .pbody

I think this one is over my head, @diy-guy any ideas?

[–] [deleted] 2 pts

It's the "divs" I think personally. It's going to be tricky to play the divs for this one.

[–] [deleted] 1 pt (edited )
`.misctainer {
float: none;
}

.votebuttons {
display: inline-block;
float: none;
}`

This is what I have so far.

I'd need some strange way to switch the divs when they load, but that could easily create problems.

You are going to run into problems doing something like this. If you want the text load first.

I'd have to reverse the CSS divs in loading order.

Short term something might work, but long term it's a "no" to me personally.

"picture" / "up arrow-down arrow" load before the "text/link".

I'd have to re-design the site myself personally. So it's a "no".

Is it fine if the picture and/or up/down arrow are above the link?

[–] [deleted] 1 pt (edited )

https://pic8.co/sh/YYUss0.png

I'd have to redesign the website / redesign the CSS code of the website or the entire layout. Which is a "no" (obviously). Even with some CSS trick / hack or something that made it work. I don't recommend it long term with browsers for now at least.

@saymyname

edit - I'm drinking tonight and pretty gone myself. Let me know if it isn't too confusing.

[–] 0 pt

I want to say yeah I wouldn't mind if they were above. But if it makes the text load noticeably slower, I might get annoyed and take it out. But thanks for explaining and the picture of what could have been haha.