首页 › 论坛 › bbPress插件版讨论区 › 综合技术 › bbpress.org官方主题
该主题包含 7 个回复,有 3 个参与人,并且由 awei 于 6 年, 3 月 前 最后一次更新。
正在查看 8 个帖子 - 1 至 8 (共计 8 条)
-
作者帖子
-
2018 年 8 月 2 日 下午 8:20 #5163
看上去不错:
https://chatter.gaily.ga/2018 年 8 月 3 日 上午 11:02 #5164https://wordpress.xuiv.ga/wp-content/themes/bborg.zip
需要把wp-content/themes/bborg/languages/bborg-zh_CN.mo移动到wp-content/languages/themes
2018 年 8 月 3 日 下午 12:31 #5168一般主题的bbpress样式改善:
Code: css (select)1.
2.
3.
4.
5.
6.
7.
8.
9.
10.
11.
12.
13.
14.
15.
16.
17.
18.
19.
20.
21.
22.
23.
24.
25.
26.
27.
28.
29.
30.
31.
32.
33.
34.
35.
36.
37.
38.
39.
40.
41.
42.
43.
44.
45.
46.
47.
48.
49.
50.
51.
52.
53.
54.
55.
56.
57.
58.
59.
60.
61.
62.
63.
64.
65.
66.
67.
68.
69.
70.
71.
72.
73.
74.
75.
76.
77.
78.
79.
80.
81.
82.
83.
84.
85.
86.
87.
88.
89.
90.
91.
92.
93./* for admin toolbar */
#wpadminbar {
direction: ltr;
color: #ccc;
font-family: -apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,"Helvetica Neue",sans-serif;
height: 36px;
position: absolute;
width: 100%;
min-width: 600px;
z-index: 99999;
background: #005b96;
border-top: solid 3px #444;
border-bottom: solid 1px #aaa;
}
#wp-toolbar {
margin: 0 auto;
}
@media screen and ( min-width: 960px ) {
#wp-toolbar {
max-width: 1200px;
}
}
@media screen and ( max-width: 782px ) {
#wp-toolbar {
width: 100%;
}
}
/* for bbpress forum */
#bbpress-forums p.bbp-topic-meta img.avatar,
#bbpress-forums ul.bbp-reply-revision-log img.avatar,
#bbpress-forums ul.bbp-topic-revision-log img.avatar,
#bbpress-forums div.bbp-template-notice img.avatar,
#bbpress-forums .widget_display_topics img.avatar,
#bbpress-forums .widget_display_replies img.avatar {
float: none;
margin-bottom: 1px;
border: 2px double #ddd;
}
#bbpress-forums li.bbp-footer {
background: #fafafa;
}
#bbpress-forums li.bbp-header {
background: #f8f8f8;
}
#bbpress-forums #bbp-search-form {
position: relative;
height: 37px;
background-color: #f7f7f7;
border: 1px solid #ddd;
display: block;
padding: 0px;
width: 216px;
margin-bottom: 4px;
}
#bbpress-forums #bbp_search{
width: 100%;
border: none;
}
#bbpress-forums #bbp_search_submit {
bottom: 0;
overflow: hidden;
padding: 0px 10px;
position: absolute;
right: 2px;
top: 2px;
height: 31px;
font-size: 13px;
text-transform: none;
}
.widget_display_search #bbp-search-form {
position: relative;
height: 37px;
background-color: #f7f7f7;
border: 1px solid #ddd;
display: block;
padding: 0px;
}
.widget_display_search #bbp_search{
width: 100%;
border: none;
}
.widget_display_search #bbp_search_submit {
bottom: 0;
overflow: hidden;
padding: 0px 10px;
position: absolute;
right: 2px;
top: 2px;
height: 31px;
font-size: 13px;
text-transform: none;
}2018 年 8 月 3 日 下午 12:31 #5169样例站点:
https://wordpress.xuiv.ga- 该回复由 xuiv 于 6 年, 5 月 前 修正。
2018 年 8 月 3 日 下午 7:42 #5171经测试需修改,img.avatar要加display: inline;
Code: css (select)1.
2.
3.
4.
5.
6.
7.
8.
9.
10.
11.
12.
13.
14.
15.
16.
17.
18.
19.
20.
21.
22.
23.
24.
25.
26.
27.
28.
29.
30.
31.
32.
33.
34.
35.
36.
37.
38.
39.
40.
41.
42.
43.
44.
45.
46.
47.
48.
49.
50.
51.
52.
53.
54.
55.
56.
57.
58.
59.
60.
61.
62.
63.
64.
65.
66.
67.
68.
69.
70.
71.
72.
73.
74.
75.
76.
77.
78.
79.
80.
81.
82.
83.
84.
85.
86.
87.
88.
89.
90.
91.
92.
93.
94./* for admin toolbar */
#wpadminbar {
direction: ltr;
color: #ccc;
font-family: -apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,"Helvetica Neue",sans-serif;
height: 36px;
position: absolute;
width: 100%;
min-width: 600px;
z-index: 99999;
background: #005b96;
border-top: solid 3px #444;
border-bottom: solid 1px #aaa;
}
#wp-toolbar {
margin: 0 auto;
}
@media screen and ( min-width: 960px ) {
#wp-toolbar {
max-width: 1200px;
}
}
@media screen and ( max-width: 782px ) {
#wp-toolbar {
width: 100%;
}
}
/* for bbpress forum */
#bbpress-forums p.bbp-topic-meta img.avatar,
#bbpress-forums ul.bbp-reply-revision-log img.avatar,
#bbpress-forums ul.bbp-topic-revision-log img.avatar,
#bbpress-forums div.bbp-template-notice img.avatar,
#bbpress-forums .widget_display_topics img.avatar,
#bbpress-forums .widget_display_replies img.avatar {
float: none;
margin-bottom: 1px;
border: 2px double #ddd;
display: inline;
}
#bbpress-forums li.bbp-footer {
background: #fafafa;
}
#bbpress-forums li.bbp-header {
background: #f8f8f8;
}
#bbpress-forums #bbp-search-form {
position: relative;
height: 37px;
background-color: #f7f7f7;
border: 1px solid #ddd;
display: block;
padding: 0px;
width: 216px;
margin-bottom: 4px;
}
#bbpress-forums #bbp_search{
width: 100%;
border: none;
}
#bbpress-forums #bbp_search_submit {
bottom: 0;
overflow: hidden;
padding: 0px 10px;
position: absolute;
right: 2px;
top: 2px;
height: 31px;
font-size: 13px;
text-transform: none;
}
.widget_display_search #bbp-search-form {
position: relative;
height: 37px;
background-color: #f7f7f7;
border: 1px solid #ddd;
display: block;
padding: 0px;
}
.widget_display_search #bbp_search{
width: 100%;
border: none;
}
.widget_display_search #bbp_search_submit {
bottom: 0;
overflow: hidden;
padding: 0px 10px;
position: absolute;
right: 2px;
top: 2px;
height: 31px;
font-size: 13px;
text-transform: none;
}2018 年 8 月 5 日 上午 9:46 #5172再修复一个小问题
Code: css (select)1.
2.
3.
4.
5.
6.
7.
8.
9.
10.
11.
12.
13.
14.
15.
16.
17.
18.
19.
20.
21.
22.
23.
24.
25.
26.
27.
28.
29.
30.
31.
32.
33.
34.
35.
36.
37.
38.
39.
40.
41.
42.
43.
44.
45.
46.
47.
48.
49.
50.
51.
52.
53.
54.
55.
56.
57.
58.
59.
60.
61.
62.
63.
64.
65.
66.
67.
68.
69.
70.
71.
72.
73.
74.
75.
76.
77.
78.
79.
80.
81.
82.
83.
84.
85.
86.
87.
88.
89.
90.
91.
92.
93.
94.
95.
96.
97.
98.
99.
100.
101./* for admin toolbar */
#wpadminbar #wp-admin-bar-wp-logo {
display: none;
}
#wpadminbar {
direction: ltr;
color: #ccc;
font-family: -apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,"Helvetica Neue",sans-serif;
height: 36px;
position: absolute;
width: 100%;
min-width: 600px;
z-index: 99999;
background: #005b96;
border-top: solid 3px #444;
border-bottom: solid 1px #aaa;
}
#wp-toolbar {
margin: 0 auto;
}
@media screen and ( min-width: 960px ) {
#wp-toolbar {
max-width: 1200px;
}
}
@media screen and ( max-width: 782px ) {
#wp-toolbar {
width: 100%;
}
}
/* for bbpress forum */
#bbpress-forums p.bbp-topic-meta img.avatar,
#bbpress-forums ul.bbp-reply-revision-log img.avatar,
#bbpress-forums ul.bbp-topic-revision-log img.avatar,
#bbpress-forums div.bbp-template-notice img.avatar,
#bbpress-forums .widget_display_topics img.avatar,
#bbpress-forums .widget_display_replies img.avatar {
float: none;
margin-bottom: 1px;
border: 2px double #ddd;
display: inline;
}
#bbpress-forums li.bbp-footer {
background: #fafafa;
}
#bbpress-forums li.bbp-header {
background: #f8f8f8;
}
#bbpress-forums #bbp-search-form {
position: relative;
height: 37px;
background-color: #f7f7f7;
border: 1px solid #ddd;
display: block;
padding: 0px;
width: 216px;
margin-bottom: 4px;
}
#bbpress-forums #bbp_search{
width: 100%;
border: none;
}
#bbpress-forums #bbp_search_submit {
bottom: 0;
overflow: hidden;
padding: 0px 10px;
position: absolute;
right: 2px;
top: 2px;
height: 31px;
font-size: 13px;
text-transform: none;
}
#bbpress-forums .bbp-form .wp-editor-container .quicktags-toolbar input,
#bbpress-forums .bbp-form .wp-editor-container .quicktags-toolbar .button{
color: #333 !important;
}
.widget_display_search #bbp-search-form {
position: relative;
height: 37px;
background-color: #f7f7f7;
border: 1px solid #ddd;
display: block;
padding: 0px;
}
.widget_display_search #bbp_search{
width: 100%;
border: none;
}
.widget_display_search #bbp_search_submit {
bottom: 0;
overflow: hidden;
padding: 0px 10px;
position: absolute;
right: 2px;
top: 2px;
height: 31px;
font-size: 13px;
text-transform: none;
}2018 年 9 月 2 日 上午 2:48 #5178特别优秀, 想问用的什么主题, 能否提供付费咨询服务
2018 年 10 月 12 日 下午 3:39 #5184该主题很优秀,本人很是推荐http://mjiong.com/forums/topic/21927.html
- 该回复由 awei 于 6 年, 3 月 前 修正。
-
作者帖子
正在查看 8 个帖子 - 1 至 8 (共计 8 条)
抱歉,回复评论必需登录。