I'm trying to add space between logos on my website. I've tried using
<p>
</br>
None of them are working. Please help! Thank you!
I'm trying to add space between logos on my website. I've tried using
<p>
</br>
None of them are working. Please help! Thank you!
Can you link to the site?
http://www.wavesmusictherapy.com/store/
I've got the left side spaced out now, but the right won't budge.
Normally when spacing out something like this, you want to do all that with css.
So I would suggest that you clean up the code so that it looks like:
<ul class="storefront">
<li><a href="">first image</li>
<li><a href="">second image</li>
etc..... with more <li> for the other images
</ul>
This in the css you can do something like:
ul.storefront {list-style:none;}
ul.storefront li {padding:0 30px 30px 0;}
You must log in to post.