Hoe de positie van de avatar om te keren zodat deze voor de onderwerptekst staat?

like this

1 like

Hello and welcome to Discourse!

This is a deceivingly hard thing to do: it uses a table element and it’s not straightforward to change the order without changing the actual HTML structure. And changing the structure would essentially mean replacing the component with your own template, which I don’t recommend trying at all.

I gave this a quick go, and it is somewhat possible with pure CSS, but it’s not a very robust implementation.

In case you want to try:

.topic-list-item {
    position:relative;
}

.topic-list .posters {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    max-width: 150px;
    overflow: hidden;
    display: block;
    box-sizing: border-box;
    height: auto !important;
}

.topic-list .topic-list-data:first-of-type {
    padding-inline-start: 150px;
}

I suggest you scope it to desktop!

1 like

Welcome to Meta :waving_hand:

Do you want the topic list to look like this?

I think you can do that with this component

3 likes

Oh its not clear from the OP to me if the request is to move the topic author or all avatars.

That’s right, thank you for the help, thank you so much

Thank you so much for the help too, I ended up using that theme component, still, I really appreciate it

1 like