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.