Jump to content

Change specific card.backdropCard size


cochize1

Recommended Posts

cochize1

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

Link to comment
Share on other sites

Happy2Play

You mean this?

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

 

Link to comment
Share on other sites

cochize1
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)

Link to comment
Share on other sites

Happy2Play

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

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

 

Link to comment
Share on other sites

cochize1

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

Link to comment
Share on other sites

Happy2Play

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
Link to comment
Share on other sites

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...