This article mainly introduces the alternative method for the invalid currentstyle parameter of the dreamweaver dedecms homepage Navigation. Invalid currentstyle parameter will cause the navigation bar to not be highlighted. This article gives another solution. Friends who need it can refer to
By default, the homepage of Dreamweaver does not set the highlight attribute , as long as other columns can. The following code can solve this problem:
The code is as follows:
</p> <p><li{dede:field name=typeid runphp="yes"} (@me=="")? @me=" class='hover'":@me="";{/dede:field}> <a href='{dede:global.cfg_cmsurl/}/'><span>主页</span></a></li> {dede:channel type=' top ' row='10' currentstyle="<li class='hover'> <a href='~typelink~' ~rel~><span>~typename~</span></a></li>"} <li><a href='[field:typeurl/]' [field:rel/]><span>[field:typename/]</span></a></li> {/dede:channel}</p> <p>
dedecms template download address: www.php.cn/xiazai/code/dedecms
Above blue The code in bold color is to determine whether the current column is the home page. If it is the home page, add class='hover', otherwise it will not be added, so as to achieve the desired effect.
The above is the detailed content of Detailed introduction to the alternative method of invalid currentstyle parameter in the homepage navigation bar of Dedecms.. For more information, please follow other related articles on the PHP Chinese website!