Showing search keywords as list is too long for theme without sidebar region or lack of space in sidebar, especially when showing more than 15 keywords

It will be useful to have an option to display search keywords in ZG Latest block to be inline as below:
modem, install modem, how to install, install, LAMP setup

Comments

fgm’s picture

This is something you can modify in your theme, in one of two ways:

- both "top" and "latest" blocks are theme functions, which you can completely override in your theme (theme_zeitgeist_block_latest and theme_zeitgeist_block_top)
- if you just want to make the list inline, simple modify your theme CSS to add a rule like:

#block-zeitgeist-latest ul, 
#block-zeitgeist-latest li,
#block-zeitgeist-top ul,
#block-zeitgeist-top li {
  display: inline;
}

And this will make your blocks inline.

fgm’s picture

Status: Active » Fixed

New feature added in today's version, to avoid even having to touch the site theme.

On the same occasion, changed from theme functions to templates, which are more common nowadays.

Also added on today's D7 version.

Status: Fixed » Closed (fixed)

Automatically closed -- issue fixed for 2 weeks with no activity.