我的css代码的一些部分用wordpress编辑器编写专用于移动版网站不起作用而且它没有出现在检查页专用
我想让我的桌子在手机使用时有水平滚动
@media (max-width: 768px) {
.gem-textbox-content {
padding-right: 30px !important;
}
.vc_tta.vc_general.vc_tta-accordion .vc_tta-panel-body {
padding: 25px;
}
/*form here forward code doesn't word*/
.gem-table .gem-table-responsive .gem-table-style-1 .row-headers {
display: block !important;
overflow-x: scroll !important;
}
.tabletolist .rh .nrh {
display:none !important;
}
table {
display:block !important;
}
}
当我直接在开发控制台中编写此代码时,它可以正常工作,但是当我在wp css编辑器中编写它时它没有,我把!重要的是覆盖内联css
答案 0 :(得分:0)
您应该更改入队代码中的版本号(通常在主题的functions.php中),以便重新加载样式表。
wp_enqueue_style( 'my_styles', plugins_url( 'mystyles.css' , dirname(__FILE__) ), array(), 5.52);
在上面的示例中,我将5.52更改为5.53以触发样式更改。
wp_enqueue_style( 'my_styles', plugins_url( 'mystyles.css' , dirname(__FILE__) ), array(), 5.53);