2

I want to customize the navigation bar in my theme. I searched for the CSS file that styles the navigation bar in the css directory but I couldn't find it.

In the nagivation.vm file, the navigation is declared as follows:

<nav class="$nav_css_class" id="navigation">

and using firebug I found out that the class is

sort-pages modify-pages.

I appreciate your help.

Thanks

4

1 回答 1

2

该 css 文件称为css/navigation.css. 但是,最佳做法是在其中进行所有修改_diffs/css/custom.css- 最后加载此文件,其中的所有设置将覆盖 navigation.css 和任何其他文件中的设置。作为副作用,您将所有设置与 Liferay 的设置完全分开,并且在更新期间处于更好的位置。

custom.css 在所有用于扩展的主题中都应该是空的。如果你从经典主题开始,你会看到里面的 custom.css 不是空的——这意味着经典主题并不意味着扩展。当然,从技术上讲,您仍然可以这样做,但 Liferay 可能会在未来版本中更改此主题,恕不另行通知,您最终将升级。

于 2013-05-04T18:26:21.633 回答