Page 1 of 1
html?
Posted: Fri Apr 08, 2011 8:23 pm
by amrogers3
Trying to use the
"List"
"List="
"[*]"
buttons but they don't seem to be doing anything. Obviously there is something I am missing but I can't figure out how to make this work. Google was no help either.
Thanks.
Re: html?
Posted: Fri Apr 08, 2011 8:28 pm
by MagickalMemories
I presume you're trying to say that you're having problems using those commands?
These phpbb boards do not use html. So, any sort of html command you try will fail. Additionally, not all phpbb boards use all phpbb codes. The only codes allowed are the ones a site is "programmed" to allow. In this case, the
- command is not one that's programmed into the system.
Hope that helps.
Eric
Re: html?
Posted: Fri Apr 08, 2011 8:58 pm
by amrogers3
hmmm.... these are the exact same commands/buttons at the top when you type a message. I figured if the boards have them listed you should be able to use them.
Re: html?
Posted: Fri Apr 08, 2011 9:36 pm
by MagickalMemories
Honestly, I just don't know.
There was a time they weren't there. I have no idea when they appeared.
That said...
Re: html?
Posted: Fri Apr 08, 2011 9:48 pm
by YoungWolf777
This board doesn't give you a pop-up like other for your list items. The "List" button just gives you the start and end tags. You have to manually place your text in between them. Same goes for IMG and URL tags.
Re: html?
Posted: Fri Apr 08, 2011 11:30 pm
by amrogers3
I got "
" to work. Anyone know what "
" and "[*]" do?
Re: html?
Posted: Sat Apr 09, 2011 12:22 am
by YoungWolf777
This is an unordered list
This is an unordered list with bullets "[*]"
The list= doesn't appear to work. It should give an ordered list (1,2,3...) I'm placing the above text examples in a code box so you can see how it is structured.
Code: Select all
This is an unordered list
[list]alpha
beta
omega[/list]
This is an unordered list with bullets "[*]"
[list][*]alpha
[*]beta
[*]omega[/list]
Re: html?
Posted: Sat Apr 09, 2011 1:16 am
by Ironhide
basically, whatever you put inbetween the brackets will in a list like YoungWolf demonstrated above.
Re: html?
Posted: Sat Apr 09, 2011 3:35 am
by amrogers3
YoungWolf777 wrote:This is an unordered list
This is an unordered list with bullets "[*]"
The list= doesn't appear to work. It should give an ordered list (1,2,3...) I'm placing the above text examples in a code box so you can see how it is structured.
Code: Select all
This is an unordered list
[list]alpha
beta
omega[/list]
This is an unordered list with bullets "[*]"
[list][*]alpha
[*]beta
[*]omega[/list]
Right on, that works perfectly
Thanks YW.