Luke DeWitt wrote:
Good Day Everyone,

I was wondering about something that I am sure is very simple, but I
cannot find any information about anywhere.

At this moment, it appears as though the
jetspeed-layouts::VelocityXColums are being absolutely positioned
about 150 pixels away from the left of the screen. I was where I
could set this to not happen (ie/ be on the very left of my screen)
without using absolute position in my JSP file. There has got to be a
CSS setting somewhere, and if someone could please point it out to
me, it would be a great help.

Thanks a ton!

--LD

I assume you want to get the entire lhs menu as well as the portlets moved flush left to the browser window.

First look at decorations/layout/tigris/header.vm:
Try replacing
#includeLinksWithIconNavigation($navigationsStandardMenu $TOP_TO_BOTTOM)
with
<p>hello</p>

You will see the 'hello' text go flush.
So its just a matter of narrowing down which style in the macro is padding. Note that velocity does not reload macros by default, so you will have to inline to speed up testing

The macro is found in:

 decorations/layout/tigris/decorator-macros.vm

I  then tried removing  the entire lhs menu from tigris
REMOVE:

#if(!$navigationsStandardMenu.empty)
          <td valign="top" id="leftcol" >
<table cellpadding="0" cellspacing="4" border="0" width="100%">
#includeLinksWithIconNavigation($navigationsStandardMenu $TOP_TO_BOTTOM)
              </table>
          </td>
#end

and then the portlets were still not flush with the lhs

Looking at the portlet decorator in decorations/portlet/decorator.vm:

<div id="${f.id}" class="portlet ${decoration.baseCSSClass}">

remove the style leaving:

<div id="${f.id}" >

and portlets begin to flush left, however the formatting is bad
so you will need to tweak your CSS from there

---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to