Footer Alignment Issue in Social Media Section (English & Arabic)

Hello

I’m having an issue with my footer in the social media section of my store.

i added a sentence using the brand information feature, but it shifts to the center in both English and Arabic instead of staying below the “Social Media “ heading.

Could you please advise how to fix this alignment issue ?

Hello @Amal_11 ,

I hope you are well!

Can you please share the store URL?

Thank you, I’m doing well, hope you are too.

just so you know, i fixed it in English. But when i switch to Arabic, the text goes back to being centered

Please copy and paste the below code to the top of base.css or theme.css. To find base.css or theme.css, go to Online store >> Themes >> Edit code and search for either base.css or theme.css

Alternatively, if the code didn’t work, copy and paste the code below by going to the Online store >> Themes >> Customize >> Click on Settings icon to the left >> Scroll down to the bottom and paste it to the custom CSS tab.

.rte {
display: flex;
gap: 10px;
margin: 0;
padding: 0;
}

It will appear like -

it doesn’t work for both English and Arabic

in Arabic there’s no space between the texts

Okay! Add the below css to the same code

align-items: baseline;

.rte {
display: flex;
gap: 10px;
margin: 0;
padding: 0;
align-items: baseline;

}

Thank you so much, the code works correctly in English. But i need some help with the Arabic version, as i want it to have the same formatting as the English one. As you can see, there’s no space between the text .

Okay! Please allow me some time to check.

1 Like

Copy and paste code below you just need to change line below

display: inline-flex;

So, the whole code will be
.rte {
display: inline-flex;
gap: 10px;
margin: 0;
padding: 0;
align-items: baseline;

}

The code is working now, but i want it to match the English layout. i need the sentence to appear right under “Social Media“ with a little space in between for proper alignment