Portfolio Posts

Why does everything I post in portfolio show up on the side of the featured image?

I picked this theme because i liked it already had a section for case studies set up in portfolio and everything is loading on the right. Is there a simple fix for this? I am not familiar with CSS so doing that is not an option and from reading that might be what needs to be done.

Hello Carlos,

Thanks for writing in!

Please be advised that by default in Ethos stack, the portfolio item details will display on the right side while the featured image is on the left side. You can check it here:

We do not have any setting that change the layout of the portfolio item layout. You can only do that by adding a custom CSS code into X > Theme Options > CSS.

You need to use the Google Chrome Developer Toolbar to check the live HTML code and find which CSS selector you need to use.

The portfolio item layout is using the following css:

.single-x-portfolio .entry-featured {
    float: left;
    padding-right: 35px;
    width: 68%;
}

.single-x-portfolio .entry-wrap {
    float: right;
    width: 32%;
}

To override this styling, please add the following CSS code in the X > Theme Options > Global CSS (http://prntscr.com/evui3r)

.single-x-portfolio .entry-featured,
.single-x-portfolio .entry-wrap {
    float: none;
    width: 100%;
    padding: 0;
}

If you are interested you can learn more about CSS selectors and details here

We would love to know if this has worked for you. Thank you.

This topic was automatically closed 10 days after the last reply. New replies are no longer allowed.