专注web开发10年
花晨月夕
花晨月夕
专注web开发,可开发网站、小程序、app、oa、erp等各种系统
花晨月夕
2020-12-08 16:16:09

这里需要改两个地方

1、主题配置,其它配置,自定义css

.entry-media .placeholder{
 padding-bottom:100%important;
}

2、缩略图尺寸目前不支持用户自定义,只能改一下主题include.php里的缩略图尺寸

image.png

一个是宽,一个是高

花晨月夕
2020-12-08 16:12:39

问答插件自定义css

.q-content .edui-default .edui-editor{
 z-index:0!important
}

花晨月夕
2020-12-08 16:10:33

问答插件自定义css

.q-content .q-add-input input, .q-content .q-add-input select {
    line-height: initial;
}

花晨月夕
2020-12-03 10:35:41

如果你网站链接在站外是http协议,并且放置在https协议的页面中,这种情况下浏览器在打开链接时是不会带上referer头的,所以插件也就无法检测到是从站外点击入站的。解决方法就是将你的站点使用https协议,并且,将你在其它站上的链接也都要改为https

花晨月夕
2020-11-13 16:48:08

自定义css

.article-focusbox.bgimg-fixed{
  background-image:none!important
}

花晨月夕
2020-11-10 09:52:44
@花晨月夕这里设计的初衷就是管理员手动为用户消费,按你说的,那操作后累计消费就是负数了
花晨月夕
2020-11-09 21:16:22

这里就应该产生记录,用户在流水里也能看到,不然没有记录余额就少了,这样的程序,对吗?假如你支付宝账户余额少了,又没有消费记录,你不慌吗?你要想神不知鬼不觉的余额减少,那就只能在数据库里改。

花晨月夕
2020-11-09 21:13:57

已修复

花晨月夕
2020-09-06 10:51:27

未来N个月

花晨月夕
2020-08-01 12:43:52

主题配置-其它配置-自定义css

.widget .entry-media{display:none}
.cao-widget-posts .posts .left {padding: 10px 0 5px 10px;padding-left: 22px;position: relative;border-bottom:none}
.cao-widget-posts .posts .num{position: absolute;left: 2px;font-weight: 600;}
.cao-widget-posts .posts .left a{height:auto;white-space: nowrap;overflow: hidden;text-overflow: ellipsis;}
.cao-widget-posts .posts .left:nth-child(1) .num{color:#F44336;}
.cao-widget-posts .posts .left:nth-child(2) .num{color:#4CAF50;}
.cao-widget-posts .posts .left:nth-child(3) .num{color:#FFC107;}
.cao-widget-posts .posts .left:nth-child(4) .num{color:#00BCD4;}
.cao-widget-posts .posts .left:nth-child(5) .num{color:#2196F3;}
.cao-widget-posts .posts .left:nth-child(6) .num{color:#E91E63;}
.cao-widget-posts .posts .left:nth-child(7) .num{color:#34495e;}
.cao-widget-posts .posts .left:nth-child(8) .num{color:#f4e3ab;}

网站设置-版权说明

<script>$('#hotposts .left').each(function(k){$(this).prepend('<span class="num">'+(++k)+'</span>')});$('#relatedpost .left').each(function(k){$(this).prepend('<span class="num">'+(++k)+'</span>')});</script>

效果图:

image.png