post width

Hi,

Is it possible to increase post width on home page (list of posts). Now it is around 700px i need to rise it to, let me think, 900px?

Hi @bogml,

I hope you are well today and thank you for your question.

You can try achieving this by adding the following CSS code in the Custom CSS option of your theme on the below path.

Admin Area -> Appearance -> Customize -> Activello Options -> Other -> Custom CSS


.container.main-content-area {
    max-width: 1400px;
    width: 100%;
}

Best Regards,
Movin

works great, thanks

as we are around dimension issue,
can you provide me some code that decrease height of image attached to posts?

as we are around dimension issue,
can you provide me some code that decrease height of image attached to posts?

You are most welcome here :slight_smile:

To help us keep support thread separates could you please create new thread for your other questions here https://colorlibsupport.com/c/activello/ instead of asking them in your single thread as it makes the thread messy and hard to read.

If you want to you can also add reference of this thread in your newly created thread.

We would be more than happy to help you on your new thread.

ok, no problem.

but in the post width issue, code above (post width) adjust width only on content section.
If width is increased, top menu stay in position and is not alginate left, can U update the code that inflict on other parts of site?

Use the below CSS code instead to achieve that.

#page .container{
    max-width: 1400px;
    width: 100%;
}

works great, thanks

You are most welcome here :slight_smile: