Jump to content

Change specific card.backdropCard size


Recommended Posts

Posted

So, I want to chenge backdropCard size everywhere except two places. When I use this code all looks as I want except:

- small poster-like in series episode details

- backdrop of currently watching on dashboard

div.card.backdropCard
{    width: 16em!important;
    height: auto;
}

How can I address all backdrops except those two?

image.thumb.png.f54113af08b8656f5d62ca3b237cbb1a.png

Happy2Play
Posted

You mean this?

div.card.backdropCard:not(.detailImageContainerCard)
{    width: 16em!important;
    height: auto;
}

 

Posted
2 minutes ago, Happy2Play said:

You mean this?


div.card.backdropCard:not(.detailImageContainerCard)
{    width: 16em!important;
    height: auto;
}

 

yes, that's great, but could you also point to another not argument and exclude that in Dashboard as well (backdrops are smaller there as well)

Happy2Play
Posted

Are you only wanting the more from season x episodes small and everywhere else normal?

div.moreFromSeasonSection div.card.backdropCard
{    width: 16em;
    height: auto;
}

 

Posted

actually Dashboard and .detailImageContainerCard are the only places where I want to leave it as it is, i.e I want all backdrops at the Suggestions sections to be smaller as well

Happy2Play
Posted

Everything I have tried doesn't appear to work on the Dashboard.

So maybe something like this, will be dependent of what section it appears in on the Dashboard.

.backdropCard:not(.detailImageContainerCard)
{    width: 16em;
    height: auto;
}
.section4 .backdropCard
{    width: 20em;
    height: auto;
}

 

  • Like 1
Posted

works perfectly, thank you

 

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...