Yes, you can use the class wrappers inline:
{{foo{...}}} ... {{bar{...}}}
That will create inline elements (SPAN) rather than block elements (DIV)
though, which affects placement options.
So in order to achieve what you want (three columns), you need to use a
different approach:
---------------
{{contentCols{
{{leftCol{
[[Back]]
}}}{{rightCol{
[[Next]]
}}}{{centerCol{
[[Home]]
}}}
}}}
---------------
Then add this to your StyleSheet:
---------------
.contentCols {
overflow: auto; /* contain floats */
}
.leftCol,
.rightCol,
.centerCol {
margin: 0 10px;
padding: 5px;
}
.leftCol {
float: left;
width: 20%;
}
.rightCol {
float: right;
width: 20%;
text-align: right;
}
.contentCols { /* IE hasLayout fix */
display: inline-block;
}
.contentCols {
display: block;
overflow: hidden; /* create block formatting context */
text-align: center;
}
---------------
HTH.
-- F.
That should be ".centerCol" rather than ".contentCols" there.
-- F.
As stated in my correction, that should be ".centerCol" there rather
than ".contentCols".
Without this block the technique won't work properly on Internet Explorer.
-- F.