Text alignment of a particular category

Posted in: Newspaper
Post count: 9

Hi,

Is there a way to change the text alignment of a particular category?

e.g I have a category called International news and I want all the posts under this category to have right alignment for both post title and post contents.

Thanks.

Post count: 22421

Hello,

Sorry but our theme does not have such options to change the direction of the text based on specific categories.
You can try to do make a custom code implementation for this process to be easier. It is a simple 2 step process.
You can add a custom body class on the posts belonging to your category and then apply css to the new class like so:

1) Ad this code in functions.php:

add_filter( 'body_class','my_body_classes' );
function my_body_classes( $classes ) {
if ( in_category('Gadgets') ) {
$classes[] = 'RTL_Post';
}
return $classes;
}

Example: https://www.screencast.com/t/xyOvs6S8ESw
Replace ‘Gadgets’ with your category name.
Now all your posts belonging to the category you specified will get a custom class you can target with css.
Now you can use this css to change the direction of the post title and content to right to left.

2) Add this css code in your theme panel-> custom css box:
https://www.screencast.com/t/6FZNA1fsARvk

.RTL_Post .post header .entry-title, .RTL_Post .td-ss-main-content{
direction:rtl;
}

Thanks.

Post count: 9

Thank you Bogdan.

This works perfectly fine. The only thing that I want to keep left to right is the comments section. Is there a way to exclude that as currently everything is right to left?

Kind Regards.

Post count: 22421

Hi,

This was an important detail you should have mentioned.

If you want to make just the comments RTL, then remove the previous css and use this one:
.RTL_Post .comments{
direction:rtl;
}

Thank you!

Post count: 9

Hi,

I think you misunderstood my comment.

I wanted to change everything to rtl excpet for comments section.

I used your last code by only amending the following. Everything works fine now.

.RTL_Post .comments{
direction:ltr;
}

Thanks for your help.

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