[dokuwiki] Re: custom template css question
- From: Myron Turner <turnermm02@xxxxxxx>
- To: dokuwiki@xxxxxxxxxxxxx, jas@xxxxxxxxxxxx
- Date: Thu, 26 Jul 2007 23:17:12 -0500
Jason Keltz wrote:
Hi.
I need to build a custom template for an internal DokuWiki. In a
sidebar menu, I need to be able to "indent" sidebar entries. I was
hoping to use h1-h5 for this indentation. The problem is that I don't
need the actual header text at all - just the indentation that
DokuWiki inserts as a result of using the header (div class="level1",
etc..).
I want to be able to do something like:
<header1>
Link1
<header2>
Link2
Link3
<header1>
Link4
and get:
Link1
Link2
Link3
Link4
Right now, I get:
<blank line>
Link1
<blank line>
Link 2
Link 3
<blank line>
Link 4
I've tried to set "display: none" in the CSS style for h1-h5 in this
part of the sidebar, and it "somewhat" works in that the headers don't
get displayed, but, the space surrounding the headers do get
displayed. The space isn't part of the "level" div either since they
only set the margin.
Any ideas?
Thanks..
Jason.
I believe you've asked for this a few times. Here is a little plugin
that will do what you want:
http://www.mturner.org/temp/indent.zip
Use it as follows:
<indent>8</indent>This is indented 8 spaces.
The number between the <indent></indent> tags specifies how many spaces
the text will be indented.
Hope this helps,
Myron
--
_____________________
Myron Turner
http://www.room535.org
http://www.bstatzero.org
http://www.mturner.org/XML_PullParser/
--
DokuWiki mailing list - more info at
http://wiki.splitbrain.org/wiki:mailinglist
- References:
- [dokuwiki] custom template css question
- From: Jason Keltz
Other related posts:
- » [dokuwiki] custom template css question
- » [dokuwiki] Re: custom template css question
- » [dokuwiki] Re: custom template css question
- » [dokuwiki] Re: custom template css question
Hi.I need to build a custom template for an internal DokuWiki. In a sidebar menu, I need to be able to "indent" sidebar entries. I was hoping to use h1-h5 for this indentation. The problem is that I don't need the actual header text at all - just the indentation that DokuWiki inserts as a result of using the header (div class="level1", etc..).
I want to be able to do something like: <header1> Link1 <header2> Link2 Link3 <header1> Link4 and get: Link1 Link2 Link3 Link4 Right now, I get: <blank line> Link1 <blank line> Link 2 Link 3 <blank line> Link 4I've tried to set "display: none" in the CSS style for h1-h5 in this part of the sidebar, and it "somewhat" works in that the headers don't get displayed, but, the space surrounding the headers do get displayed. The space isn't part of the "level" div either since they only set the margin.
Any ideas? Thanks.. Jason.
- [dokuwiki] custom template css question
- From: Jason Keltz