Portfolio items squashed to one side (Pro)

HIya, I’m starting to use the portfolio to set up affiliates - I started with X but it looks a bit weird https://www.less-stuff.co.uk/portfolio-item/x-the-theme/

any ideas appreciated.

And can I change the text SKILLS and ‘Share this project’ ?

thank you!

Hi There,

I could see that you’ve hidden the portfolio featured images by the custom CSS. You should also increase the width of portfolio content as well. Please add this custom CSS:

.single-x-portfolio .entry-wrap {
    width: 100%;
}

These texts can be changed under Theme Options > Portfolio > Labels:

Hope it helps :slight_smile:

you genius! that is just perfect.

Is it possible to have the featured image back for just the portfolio items and not for posts and pages please?

Did there used to be a way to have buttons instead of the drop down search? Or if not, can I make the text under ‘filter by category’ bolder? All / Nicer Homes/ Website Design/ Zero Waste

https://www.less-stuff.co.uk/products-tools/

also, can I stop the images cropping please? and have them in a masonry grid

Hi There,

Please find this custom CSS:

.single-post .entry-featured, .entry-featured, .page .entry-featured {
    display: none;
}

And change to this:

.single-post .entry-featured,
.page .entry-featured {
    display: none;
}

That’s the default style of Ethos stack: http://demo.theme.co/ethos-1/. To make the filter texts BOLD, please add this custom CSS:

ul.x-portfolio-filters-menu.unstyled a {
    font-weight: bold;
}

Please take a look at this ticket: https://theme.co/apex/forum/t/stop-images-losing-quality-as-featured-image/2059/6?u=thai.

Hope it helps :slight_smile:

that is much better, thank you so much.

I have added that code but I still don’t see the images as full size, they are cropped, despite that being deselected in the customiser.

To clarify, I want the featured image to be show in full on this page. thanks!

Hi again,

Please add the following code in the Theme Options > CSS:

.x-iso-container.cols-3 .entry-cover {
    padding-bottom: 100%;
}

Let us know how this goes!

thank you but they are still cropping

Hi,

Entry Cover are set to Cover which means to resize the background image to cover the entire container, even if it has to stretch the image or cut a little bit off one of the edges. You can change it to contain but there will be areas that will be not covered by the image.

You can try this code.

.x-iso-container.cols-3 .entry-cover {
     padding-bottom: 100%;
     background-size:contain !important;
}

Hope that helps.

That is kind of better, but will it not work so that the whole image is shown, with no borders? Thanks for your help! I really appreciate it.

Hi There,

Did you mean to remove the black background color on both sides of images?


Please update the previous CSS to this:

.x-iso-container.cols-3 .entry-cover {
    padding-bottom: 100%;
    background-size: contain;
    background-color: transparent;
}

Hope it helps :slight_smile:

nope, that is still containing them in a square, I’d like them to find their own size, with no white or black background.

Hey @lisacole1,

Regretfully, your request is not spatially possible. You see, Ethos’ grid container is fixed to square. There isn’t an option to change that because that is the stack’s design.

If we set the image to cover, that will cover the square and cut off parts of your image. If we set it to contain, white bars will show. The only solution that would cover the square while showing all parts of your image is to squish the image which I believe you would not want because the image would equally look bad.

Ethos archive display is not the right choice for this case as you would need a Masonry design like in the Integrity Stack. It’s also possible with one of the bundled plugins (Essential Grid or The Grid)

Thanks.

thank you, if I change stack on a pro site what will happen?

Hi @lisacole1

I’m not sure if I can understand your question correctly, but in general what will happen in Pro is the same as X theme, as Pro also has its custom stack designs, which you can apply from (Theme Options > Stack) and see the new styles being applied on your site.

Thanks.

thank you, if I change stack will I lose customisation I have in the CSS area? Can I just copy and paste it in again?

Hi There,

All the customization and your custom CSS will be safe!

Regards!

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