Making the News ticker go Right to Left

Posted in: Newspaper
Post count: 2

Hello,

I’m using the newspaper theme to develop an Arabic site which reads content from right to left. Most elements I can align right to make it right to left for Arabic, however the news ticker element doesn’t seem to have an option for this, I want to make it so the trending now box is on the right side of the screen and the arrows on the left. I’ve tried adding custom CSS for this but have had no success.

Thanks for the help!

Post count: 35449

Hi,

Maybe you can achieve this with a custom css like this one -> https://i.imgur.com/2UyhvNd.png
.td_block_trending_now {
direction: rtl;
}
.td-trending-now-wrapper .td-trending-now-nav-right {
position: relative;
right: 800px;
}
.td-trending-now-wrapper .td-trending-now-nav-left {
position: relative;
right: 860px;
}

The code need to be set in theme panel> custom code> custom css

Hope this will help you!
Thank you!

Post count: 2

Thank you! this solved my issue

Viewing 3 posts - 1 through 3 (of 3 total)
The forum ‘Newspaper’ is closed to new topics and replies.