Skip to content

样式自定义指南

turingou edited this page Sep 17, 2014 · 2 revisions

文件修改指南

建议通过修改 variables.less 来自定义配色 建议将对特定样式的修改都写在 custom.less

由于官方的代码经常更新,建议经常merge 官方代码。

$ git fetch origin
$ git merge origin master 

应用主题样式

手动修改

1.在你的网页中的 duoshuoQuery 部分找到:

var duoshuoQuery = {short_name : 'XXXX'};

2.增加 theme : 'none'

var duoshuoQuery = {short_name : 'XXXX', theme : 'none'};

这样,多说就不会加载自己的样式。

WordPress 插件

WordPress 插件中, 请找到 WordPress.php, 搜索 duoshuoQuery

注意: 一共要调整两处

var duoshuoQuery = <?php echo json_encode($this->buildQuery());?>;

在此行后加上:

duoshuoQuery.theme = 'none';

3.加载自定义的 embed.css,需要在 <head></head> 中加入

<link rel="stylesheet" type="text/css" href="{路径}embed.css" />