我为我的WP页面创建了一个自定义部分。您可以在此处找到CSS和HTML:http://www.cssdesk.com/J469A
我在CSS中指定了所有自定义类,并通过WordPress中的可视化编辑器添加了HTML,但自定义类不起作用,只有HTML可用。
你可以看看这里:http://www.sflsupport.org/programs/这是最后一节(网络研讨会档案馆)
答案 0 :(得分:1)
您错误地添加了样式。
它们已被添加到您的CSS中的更多媒体查询中,除非您的屏幕为767px或更低,否则不会被应用。
Python 2.7.12 (default, Oct 26 2016, 11:37:25)
[GCC 4.2.1 Compatible Apple LLVM 8.0.0 (clang-800.0.38)] on darwin
Type "help", "copyright", "credits" or "license" for more information.
>>> import datetime
>>> fmt = '%Y-%m-%d %H:%S:%M'
>>> timestamps = ['2016-11-01 19:13:34', '2016-11-01 10:47:14',
... '2016-10-31 19:09:21', '2016-10-31 13:42:36',
... '2016-10-31 10:46:30']
>>> def compare_dates(d1, d2):
... d1_dt = datetime.datetime.strptime(d1, fmt)
... d2_dt = datetime.datetime.strptime(d2, fmt)
... if d1 > d2:
... return 1
... elif d1 == d2:
... return 0
... else:
... return -1
...
>>> timestamps.sort(cmp=compare_dates)
>>> timestamps
['2016-10-31 10:46:30', '2016-10-31 13:42:36', '2016-10-31 19:09:21', '2016-11-01 10:47:14', '2016-11-01 19:13:34']
>>>
媒体查询似乎缺少关闭@media only screen and (max-width: 767px)
。