runpunkrun: Pride flag based on Gilbert Baker's 1978 rainbow flag with hot pink, red, orange, yellow, sage, turquoise, blue, and purple stripes. (Default)
Punk ([personal profile] runpunkrun) wrote in [community profile] style_system2011-12-23 12:05 pm

horizontal navlinks in Modish? [solved]

Hi folks, I'm using Modish set to two columns, but what I'd like to do is move one of my modules up to the top and have it display horizontally, which isn't an option in the wizard as far as I can see.

So my question is: Is it possible to make the navlink module horizontal? I want it directly under my header as a line of links, not the vertical stack in the sidebar it is now.

Any help is appreciated!
ninetydegrees: Art: self-portrait (Default)

[personal profile] ninetydegrees 2011-12-23 08:22 pm (UTC)(link)
It is possible with CSS with something like:

.module-navlinks {
position: absolute;
top: 8em;
right: 0;
}

.module-navlinks * {
display: inline !important;
}

#header {
padding-bottom: 3em;
}

You may need to adjust some values depending on your font size. Also, with this method it doesn't always display fine in all sorts of resolutions and font sizes. The other method is via advanced customizations and a layer. If that's what you'd rather do I can try and see what I can come up with.