Recent Topics

1 Jun 13, 2009 02:41    

My b2evolution Version: Not Entered

I would like to make my Free HTML links appear as buttons do under the rest of the sections in the andreas_01 skin. For example, I would like my links to look like the buttons under the user tools section. How can I approach this?

2 Jun 13, 2009 10:33

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

3 Jun 14, 2009 20:27

That worked! However, there are now bullets to the left of the links. Is there any way to achieve this without the bullets?

4 Jun 14, 2009 20:29

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

5 Jun 15, 2009 16:58

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!

6 Jun 15, 2009 16:59

Um... we're not random. This is a forum YOU joined for help with your web. Thanks for the slam.

7 Jun 15, 2009 17:03

I dunno, I can be fairly random :roll:

btw - you don't win a prize for 5302 ;)

¥

8 Jun 15, 2009 17:06

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.

9 Jun 15, 2009 17:09

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 . ;)

¥

10 Jun 15, 2009 17:54

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>.

11 Jun 15, 2009 18:05

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

12 Jun 15, 2009 18:16

Noods wrote:

Good call!

[...]

libertymage [dot] com

I'm a genius, that's why they made me an admin :D

¥

13 Jun 15, 2009 18:42

The bullets are gone, now I have extra line breaks. Interesting, but not quite what I was looking for :P

14 Jun 15, 2009 18:43

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>

:-)

15 Jun 15, 2009 18:43

Posted at the same time :-)


Form is loading...