I have a Big Cartel store with the "Blocks" theme and I had two questions:
1. There is a row of categories at the top that is kind of aligned to the right and I want to center them. How can I do that?
Here is the code:
<ul id="nav">
<li class="first"><a href="/products" title="View the Entire Line">VIEW ALL</a></li>{% for category in categories.active limit:4 %}<li>{{ category | link_to }}</li>{% endfor %}
</ul>
2. I set up a table for my Twitter, Facebook and Myspace badges on the bottom-left of my layout. I also want to place Big Cartel's badge on the same level, but on the opposite side (bottom-right). Right now, it's below my other badges.
Here is the code:
<table>
<tr>
<td>
<a href="http://twitter.com/myprofile" target="_blank"><img src="http://austinbikerides.com/files/img/stuff/icons/social_media/twitter_icon.png" border="0" alt="Follow Us!"></a>
</td>
<td>
<a href="http://www.facebook.com/pages/myprofile" target="_blank"><img src="http://nyca.net.np/images/face_book_icon.png" border="0" alt="Fan Us!"></a>
</td>
<td>
<a href="http://www.myspace.com/myprofile" target="_blank"><img src="http://www.lgloop.com/images/button/myspace_icon.gif" border="0" alt="Friend Us!"></a>
</td>
</tr>
</table>
<div id="badge"><a href="http://bigcartel.com" title="Check out Big Cartel"><span>Powered by Big Cartel</span></a></div>
</div>
1. There is a row of categories at the top that is kind of aligned to the right and I want to center them. How can I do that?
Here is the code:
<ul id="nav">
<li class="first"><a href="/products" title="View the Entire Line">VIEW ALL</a></li>{% for category in categories.active limit:4 %}<li>{{ category | link_to }}</li>{% endfor %}
</ul>
2. I set up a table for my Twitter, Facebook and Myspace badges on the bottom-left of my layout. I also want to place Big Cartel's badge on the same level, but on the opposite side (bottom-right). Right now, it's below my other badges.
Here is the code:
<table>
<tr>
<td>
<a href="http://twitter.com/myprofile" target="_blank"><img src="http://austinbikerides.com/files/img/stuff/icons/social_media/twitter_icon.png" border="0" alt="Follow Us!"></a>
</td>
<td>
<a href="http://www.facebook.com/pages/myprofile" target="_blank"><img src="http://nyca.net.np/images/face_book_icon.png" border="0" alt="Fan Us!"></a>
</td>
<td>
<a href="http://www.myspace.com/myprofile" target="_blank"><img src="http://www.lgloop.com/images/button/myspace_icon.gif" border="0" alt="Friend Us!"></a>
</td>
</tr>
</table>
<div id="badge"><a href="http://bigcartel.com" title="Check out Big Cartel"><span>Powered by Big Cartel</span></a></div>
</div>