Skip to content

Latest commit

 

History

History
24 lines (13 loc) · 461 Bytes

hide-the-cube-ad-on-desktop.md

File metadata and controls

24 lines (13 loc) · 461 Bytes

Hide the cube ad on desktop

Use this code sparingly, be creative in your layout -- ideally we would not have to deploy this code.

Sometimes, on desktop the cube ad gets in the way on desktop, chopping up your graphic. Here's how to hide the first cube ad on DESKTOP ONLY.

.story-interrupt.pos-alpha.predetermined {

display: none;

}

@media\(max-width: 60.25em\){

.story-interrupt.pos-alpha.predetermined {

display: inline;

}

}