通过CSS定位背景

时间:2017-08-01 00:55:58

标签: css wordpress target

我正在尝试定位:

<div class="shapely-content dropcaps-content">
            <div id="paralaxdiv" class="paralaxclass"><section id="titleimageparalax" class="intense content-section parallax-scene parallax titleimageparalaxclass" data-anchor-target='#titleimageparalax' data-bottom-top='background-position: 0px 40px;' data--1000-top='background-position: 0px -80px;' data-height-adjustment="10px" data-speed="2" style="height:700px;   margin-bottom: 0px; margin-top: 0px; margin-left: 0px; margin-right: 0px;  background-image: url(http://humatics.flywheelsites.com/wp-content/uploads/2017/07/par_who_top-2-940x623.jpg); background-size: cover; background-position: 50% 50%; background-attachment: fixed;  padding-top: 25px; padding-bottom:25px; padding-left: 0px; padding-right:0px; overflow: hidden;"><ul id='parallax-scene-1973025556' class='parallax-scene-1973025556 parallax-scene'>

background-size:cover;并将其更改为100%。我无法弄清楚如何通过wordpress自定义代码更改css。我该如何定位这段代码?

感谢!!!!

2 个答案:

答案 0 :(得分:1)

你必须使用javascript或jquery(我更喜欢jquery)。

你可以使用jquery:$("#titleimageparalax").css("background-color", "yellow");这样做。

答案 1 :(得分:1)

你可以使用!important。

#paralaxdiv>section{
   background-size: 100% auto !important;
}