Loading...
 
Themes

Themes


Re: Toggle buttons on modules

Japan

The visibility of the button is controlled by CSS. In styles/layout.css (line 862) is

span.moduleflip,
.box-title span img.flipmodimage {display: none !important; }

so you'd need to change that to {display: block !important;}

which usually is applied (line 872) on .box:hover.

You could modify business.css, or make a new 'custom.css' file and put just this rule in it, and save as styles/business/custom.css. Then it will override the default for the style, and won't be in danger of being overwritten the next time business.css is updated (in a new Tiki release, etc.). Or if you put this custom.css in /styles, it'll apply to all themes.

-- Gary

There are no comments at this time.