skip to Main Content

Reset or ignore a (max)width in CSS-Twitter bootstrap

I have the following code (codepen) /******* NO ACCESS ********************/ .container {border: 1px solid green;} .container > div {border: 1px solid red;} .container .header {max-width: 50%;} /**************************************/ .container.reset-header .header {max-width: auto;} <link href="https://cdnjs.cloudflare.com/ajax/libs/twitter-bootstrap/4.1.3/css/bootstrap.min.css" rel="stylesheet"/> <div class="container"> <div class="col-4 picture">col-4</div> <div…

VIEW QUESTION

Cannot change the href of element in Javascript – Shopify

I'm trying to change the "continue shopping" link on Shopify's "thank you" page but it doesn't work. I've included the following code to the additional scripts section on checkout page settings. <script> (function() { document.getElementsByClassName("step__footer__continue-btn")[0].href = "https://example.com/newlink"; })(); </script> Unfortunately,…

VIEW QUESTION
Back To Top
Search