skip to Main Content

Shopify Liquid – Keep Anouncement Bar Closed

I have created a custom Announcement Bar with a Close Button on our Shopify Website. The following script code closes the bar: <script> $( document ).ready(function() { if ($('.announcement-bar').length){ $( '.x' ).click(function() { $(".announcement-bar").remove(); $("body").addClass("no-announcement-bar"); }); } }); </script> Problem…

VIEW QUESTION

How can I align form elements in one group-Twitter bootstrap

I tried using md-offset-8, xs-2 but that didn't work, I need to aligned all the form fields in center. <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/twitter-bootstrap/3.3.7/css/bootstrap.min.css" /> <div class="col-md-8 col-md-offset-4 text-center"> <form class="form" action="/action.php", method="POST"> <div class="form-group row"> <div class="col-xs-4"> <label for="field_1">Field 1</label> <input…

VIEW QUESTION
Back To Top
Search