php 页脚小部件标题

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了php 页脚小部件标题相关的知识,希望对你有一定的参考价值。

.footer-widget-header-container {	background-color: #f5f5f5;	margin-top: 60px;	padding-bottom: 20px;	padding-top: 40px;	text-align: center;}.footer-widget-header-container .widget-wrap {	border-bottom: none;	padding-bottom: 0;}.footer-widget-header-container .enews {	margin-left: auto;	margin-right: auto;	max-width: 900px;}.footer-widget-header-container .enews input[type=text],.footer-widget-header-container .enews input[type=email] {	width: 29%;}.footer-widget-header-container .enews input[type=submit] {	background-color: #fe0e7b;	width: 29%;	font-family: "brandon-grotesque", sans-serif;	font-weight: 600;}.footer-widget-header-container .widget-title {	font-size: 16px;	font-weight: bold;	letter-spacing: 1.5px;	margin-bottom: 25px;}.footer-widget-header-container .enews p {	font-size: 14px;	line-height: 1.5;	padding-bottom: 15px;	padding-top: 5px;	margin-left: auto;	margin-right: auto;	max-width: 470px;}@media only screen and (max-width: 760px) {    .footer-widget-header-container .enews input[type=text], 	.footer-widget-header-container .enews input[type=email],	.footer-widget-header-container .enews input[type=submit] {		width: 80%;	}	}
// Register widget areas
add_action ( 'widgets_init', 'cc_widgets' );
function cc_widgets() {

  genesis_register_sidebar( array(
		'id' => 'footer-widget-header',
		'name' => __( 'Footer Widget Header', 'cc' ),
		'description' => __( 'This appears above the footer', 'cc' ),
	) );
	
}

// Position footer widget header
add_action ( 'genesis_before_footer', 'cc_footer_widget_header_position', 7 );
function cc_footer_widget_header_position ()  {
	
	genesis_widget_area( 'footer-widget-header', array(
			'before' => '<div class="footer-widget-header">',
			'after'  => '</div>',
		) );

}

以上是关于php 页脚小部件标题的主要内容,如果未能解决你的问题,请参考以下文章

php 添加Wordpress页脚小部件区域

php 将Genesis页脚小部件更改为4列/类

在页脚小部件中居中图像

css 更改页脚小部件的宽度

scss 使用flexblox的页脚小部件

css 关闭侧栏链接和页脚小部件中的箭头。