Site logo

Archived topic

element header - move textblock to the right

3 replies · Started by Anders on March 28, 2022

Viewing posts 1–4 of 4

Hi! How can I move the text block to the right (I want it placed under the headline "Bild")

https://grapixo.se/bild/

css from customize:
.element-services-bild {
font-size: 1.5rem;
max-width: 700px;
line-height: 2rem;
text-align: right;
}

html from element

<h1>
{{post_title}}
</h1>
<p class="element-services-bild">
Bra bilder och högkvalitativa videor bidrar starkt till att ditt företag lättare når ut i bruset. Låt mig hjälpa dig och ditt varumärke att synas och spridas i olika kanaler.</p>
<p class="element-services-bild">Jag specialiserar mig på produktfoto, personal och interiörer, och producerar även video. Jag tar mig an allehanda retuschuppdrag. Välkommen att testa mig!
</p>

Hi there,

add margin-left: auto; to your CSS, like so:

.element-services-bild {
    font-size: 1.5rem;
    max-width: 700px;
    line-height: 2rem;
    text-align: right;
    margin-left: auto;
}

great! thanks!!!

You're welcome

This archived topic is closed to new replies.