*Q&A/デザイン・CSS [#c724f33f] :主なFAQ|PukiWikiのデザインやスキンの変更、CSSについてよくある質問 #navi(Q&A) #contents **メニュー(Menubar) [#ub313802] ***Q. FrontPageのみ左サイドにサブメニューをつけたい [#d6cb8217] >''A.'' :version1.3系| if($vars["page"] == "FrontPage") のような判定で振り分ければOKだと思います。pukiwiki.skin.ja.phpの60行あたりに以下のように追加してみて下さい。 +<?php if($vars["page"] == "FrontPage"){ ?> <td valign="top" style="width:120px;word-break:break-all;"> <?php echo convert_html(@join("",@file(get_filename(encode("MenuBar"))))) ?> </td> <td style="width:10px"> </td> +<? php } ?> :version1.4系|pukiwiki.skin.ja.phpの110行目あたりを以下みたいな感じに <?php if (arg_check('read') and exist_plugin_convert('menu') and $r_page == 'FrontPage') { ?>