I am not familiar with how to insert css in Shopsite. I am using custom templates. I read that you can put some CSS in Meta Descriptions if you are using Pro, but I don't know what how to accomplish this.
I have one Content page that I would like to put a list in two columns and it looks like the way to do this is with CSS and the html <ul>. So my question is where do I put the CSS. If I only want to use this on one page, where do I put it?
This is the CSS that might accomplish what I want
ul {
float: left;
width: 12em;
margin: 0;
padding: 0;
list-style: none;
}
li {
float: left;
width: 6em;
margin: 0;
padding: 0;
}
where do I put this??
I am trying to have my list appear in 2 columns.
Thanks!