Loading...
 
Features / Usability

Features / Usability


Re: Removing Homepage text from homepage

posts: 4656 Japan

If you don't want the page name on any wiki pages, you can turn it off on the Admin Wiki page.

If you just want to turn it off on the home page, there's no admin way to do that, but you can do a little file editing to accomplish it. In your templates/tiki-show_page.tpl file (or templates/styles/(style-being-used)/tiki-show_page.tpl file, if the style being used has its own tiki-show_page.tpl file), change line 7 (in ))TikiWiki(( version 1.10beta anyway) from

{if $prefs.feature_page_title eq 'y'}
to
{if $prefs.feature_page_title eq 'y' and $page neq 'HomePage'}

To remove the border, edit your stylesheet to take the border off div.wikitext (line 803), (as reported by the Firebug add-on for Firefox).

You might also want to edit the background color of your PHP Layers menu dropdowns to match the module background. This is .mdksubmenu, now background-color: #045D95 (line 2556); maybe change to #FF9900.

-- Gary

There are no comments at this time.