2 lturner Jun 13, 2009 10:33

That worked! However, there are now bullets to the left of the links. Is there any way to achieve this without the bullets?
Can you post a link to your site to give me an idea of what skin you are using and what is happening.
Cheers
Lee
I sent you a private message with the URL. I didn't want to have my domain floating in random forums :P
Thanks if you can offer any help on this one!
Um... we're not random. This is a forum YOU joined for help with your web. Thanks for the slam.
I dunno, I can be fairly random :roll:
btw - you don't win a prize for 5302 ;)
¥
You are right. Sorry I worded it that way. Its just that I have put web sites in place only to have searches direct to forums where I posted the link more then they direct to my actual page. You guys have been nothing but helpful...sorry if my wording came off as snotty.
If you want to break your link for search engines then you could always post foo[dot]tld ... we'd still be a tad pissed at the lack of a convenient link but at least we'd be able to see your problem .... if we could be arsed changing [dot] to . ;)
¥
Good call!
Like the first "Sections" (Free HTML widget) to look like the second "Sections" (Categories widget). In other words, I would like to remove the bullets that have appeared due to <li></li>.
I think you are on the right track but it looks like you have missed out a html element in your free html widget. Your <li> elements need to be wrapped in a <ul> element:
<ul>
<li>blah</li>
</ul>
See if that works
L
Noods wrote:
Good call!
[...]
libertymage [dot] com
I'm a genius, that's why they made me an admin :D
¥
The bullets are gone, now I have extra line breaks. Interesting, but not quite what I was looking for :P
Just re-read my last post and thought I should make it clear that all the <li> elements go in the <ul> like this:
<ul>
<li>blah</li>
<li>blah</li>
<li>blah</li>
</ul>
:-)
Posted at the same time :-)
That fixed it, thanks!
I think you just have to add a link wrapped in an <li> tag in the Free HTML widget:
<li><a href="http://someurl.com">Some text</a></li>
L