Loading...
 
Skip to main content

Features / Usability


Module design and fixed width

posts: 8

Is there possibility that I can fix the width and design of particular module and other for other module? If so, which file I should look to achieve that?

Additionally how can i disable print option from being shown always?


what is my website worth

posts: 4668 Japan

You can use a CSS rule fix the width and other details of a module. Using your browser's DOM inspector, like Firebug, you can find the CSS class and id for the modules. For example, on this page, I see that the "contribute" module is "id=module_34". Then on tiki-admin.php?page=look (the "Look and Feel" admin page), you can add a CSS rule under the Customization tab like

Copy to clipboard
#module_34 {width: 200px;}


or whatever.

-- Gary