我试图在Wordpress上创建这个非常简单的登录页,使用基本主题,但自定义我的主页。起初我尝试使用Visual Composer,但后来也直接通过HTML中的文本经典编辑器进行了尝试,在这两种情况下,我的内容都限制在页面的某个宽度内,我无法将其达到100%。如果我能在解决这个问题时得到帮助,并把内容用在整个页面上,那就太好了。谢谢你的帮助!我的HTML代码如下:
<div class="introrow">
<div class="introleft">TEXT
</div>
<div class="introright"><img src="..."></div>
</div>
我的CSS如下:
.site-header, .site-footer, .entry-header {display:none!important;
}
h1:not(.site-title):before, h2:before { display:none!important;}
.introleft, .introright {
width: 50%!important;
float:left;
overflow:hidden;
}
.introrow {
width:100%!important;
}
.introright img{
margin:auto;
display:block;
width:100%!important;
height:auto;
}
.entry-content {
margin:0px!important;
padding:0px!important;
max-width:100%!important;
}