我想让this WordPress页面的标题更高。我找到了建议here,我应该在主页模板CSS文件中使用以下代码:
.full-container {
min-height: 390px;
}
CSS文件如下所示:
<?php
/**
* The template for displaying the home page panel. Requires SiteOrigin page builder plugin.
*
* Template Name: Page Builder Home
*
* @package vantage
* @since vantage 1.0
* @see http://siteorigin.com/page-builder/
* @license GPL 2.0
*/
get_header();
?>
<div id="primary" class="content-area">
<div id="content" class="site-content" role="main">
<div class="entry-content">
<?php
if ( is_page() ) {
the_post();
the_content();
}
else if( function_exists('siteorigin_panels_render') ) echo siteorigin_panels_render('home');
else echo siteorigin_panels_lite_home_render();
?>
</div>
</div><!-- #content .site-content -->
</div><!-- #primary .content-area -->
我必须把建议的代码放在哪里?
答案 0 :(得分:0)
在Child Theme或wp-content/themes/vantage/style.css
答案 1 :(得分:0)
你在那里展示的代码作为CSS样式根本不是样式,这就是一个名为&#34; Page Builder Home&#34;的页面模板。
您应该打开直接在主题文件夹中找到的style.css。在style.css的最后添加css行:
.full-container {
min-height: 390px;
}
如果您不知道如何区分php / html文件中的css文件,那么你肯定是错误的业务,你应该让这些工作由专业人士完成。
说完了,希望我的解决方案&#34;适合你。