css - Can foundation be used in BigCartel? -
i'm trying customize big cartel ecommerce , want responsive. problem know foundation responsive framework , don't know how import it.
i've tried copy source code, i'm unable save because editor says it's long , haven't found online resource can link it's done jquery.
i'll glad if can give me way include foundation or if it's not possible, other responsive framework.
you can use foundation (or other framework) big cartel, unfortunately copying/pasting entire source code big cartel theme isn't possible due content editor limit mentioned. instead you'll need have files hosted on separate webserver, or service dropbox - so:
<link rel="stylesheet" href="http://webserver.com/css/foundation.css"> <!-- how link custom stylesheet --> <link rel="stylesheet" href="http://webserver.com/css/app.css"> <script src="http://webserver.com/js/vendor/modernizr.js"></script> <script src="http://webserver.com/js/vendor/jquery.js"></script> <script src="http://webserver.com/js/foundation.min.js"></script> <script> $(document).foundation(); </script>
you'll need make sure there aren't javascript conflicts (like jquery being loaded in existing theme, example) , should go.
Comments
Post a Comment