需要帮助覆盖默认填充

时间:2018-06-18 18:41:51

标签: css padding

我是学习代码的新手,我正在努力解决可能非常简单的代码问题,但我无法做到正确。我正在尝试更新我公司的网站(我不是网页设计师或编码器)来删除两个内容区域之间的过多填充,我尝试了互联网上可用的多种不同类型的代码(有些在这里)无济于事。我使用了inspect web页面工具,我可以看到默认设置位于网站的css中,但是我还不够高级知道编辑精确填充是否会影响网站的其他区域。是否可以应用将覆盖该特定页面的默认值的代码,如果是,那么正确的代码是什么?额外的填充在这里:

<div class="row body-copy">
        <div class="col-xs-12 col-sm-12 col-md-12 col-lg-12">
[[*content]]
</div>

在这里:

<section class="leaders">
    <div class="container">
        <div class="row">

这是页面模板代码的开头部分:

<!DOCTYPE html>
<html lang="en">

<!-- Head Tag -->
[[$head-tag]]


<body>
[[$gtm]]

<!-- Navigation -->
    [[$navigation]]

    <!-- PAGE CONTENT -->

    <section class="top">
        <div class="container">

            [[$top-page-info]]


            <div class="row body-copy">
            <div class="col-xs-12 col-sm-12 col-md-12 col-lg-12">
    [[*content]]
</div>
                </div>
            </div><!--end row-->
        </div><!--end container-->
    </section>
 <section class="leaders">
        <div class="container">
            <div class="row">


                [[!getPage? 
                    &amp;elementClass=`modSnippet` 
                    &amp;element=`getResources` 
                    &amp;parents=`14` 

更新了控制页面区域的CSS部分:

    /*-------------------------------------CONTENT-------------------------------------------*/
/*--------------------------------------------------------------------------------*/

.breadcrumbs {
    padding:27px 15px 10px 0;
    color:#ACACAC;
    /*position: absolute;
    bottom: 0;
    right:0;    */
    vertical-align:text-bottom;
    text-align: right;
}

.breadcrumbs p{
    margin:0;
    font-size:10px; 
}

.breadcrumbs a {
    /*padding: 20px 0;*/
    color:#a3a3a3;
}
.breadcrumbs ul {
    list-style-type: none;
    padding-left: 0;
    margin-bottom: 0;
    font-size: 11px;

}

.breadcrumbs ul li{
    display:inline-block;
}

.breadcrumbs a.B_currentCrumb,
.breadcrumbs li.B_currentCrumb,
.breadcrumbs .B_lastCrumb {
    color:#00AEEF; 
}

section {
    padding: 50px 0 50px;
}

section.top {
    padding: 120px 0 50px;
}

section.services-top {
    padding:120px 0 10px;
}

.page-info {
    border-bottom: 1px solid #00AEEF; 
    margin-bottom: 25px;
    position: relative;
}

.page-info.second {
    border-bottom: none; 
    padding-top: 10px;
    margin-bottom: 25px;
    position: bottom;
}

section.dark {
    background-color: #292929;
    color:#c8c8c8;
     padding: 50px 0;   
}

section.medium {
    background-color: #9d9fa2;
     padding: 60px 0;
}

section.light {
    background-color: #d9d9d9;
    padding: 60px 0;
}

section.dark-blue {
    /*background-color: #005b7d;*/
    /*background-color: #00749e;*/
    background-color: #005b7d;
    padding: 50px 0;
    color:#cacaca;
        font-weight: 300;
}

div.dark-blue {
    /*background-color: #005b7d;*/
    /*background-color: #00749e;*/
    background-color: #005b7d;
    padding: 25px;
    color:#cacaca;
        font-weight: 300;
}


ul {
    padding-left: 20px;
    margin-bottom: 25px;
}

ul li{
    margin-bottom: 5px;
}

ul.nav li { margin-bottom: 0px; }

ul.pageList {
    margin: 10px 0;
}

ul.pageList li{
    display: inline-block;
    margin: 0 5px 0 0;
}

a:hover > img {
    opacity:0.5; 
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'nudista-web',sans-serif;
}

p {
    margin-bottom: 20px;
    font-size: 14px;
    line-height: 1.5;
}

.call-to-action h2 {
    margin: 0 auto 20px;
}



.clear {
    clear: both;
}

h1 {
    color: #00AEEF;
    font-weight: 300;
   /* padding-bottom: 5px;*/
    display: inline-block;
  /*  border-bottom: 1px solid #00AEEF;*/
    text-transform: uppercase;
   /* margin: 0 0 30px 0;*/
    font-size: 25px;
}

h2 {
    color: #00AEEF;
    font-size: 32px;
    text-transform: uppercase;
    font-weight: 300;
    margin: 0 0 15px 0;

}

h3 {
    color: #00AEEF;
    color:#555;
    font-size: 20px;
    text-transform: uppercase;
    margin-top: 35px;
    font-weight: 400;
}

section.dark-blue h3 {
    color: #00AEEF;
    margin-top: 0px;
}

h4 {
    /*color: #00749e;*/
    line-height: 1.35;
}

h5 {
    font-size: 16px;
    text-transform: uppercase;
    font-weight: 500;
    text-decoration: underline;
}

.no-gutter > [class*=col-] {
    padding-right: 0;
    padding-left: 0;
}

section.dark ul{
    padding-left: 15px;
    margin: 0 0 15px 0;
        list-style-type: none;
    list-style-position: outside;
    list-style-image: url('../images/little-blue-arrow.png');
}

.body-copy ul {
        padding-left: 15px;
    margin: 0 0 25px 0;
    list-style-type: none;
    list-style-position: outside;
    list-style-image: url('../images/little-blue-arrow.png');
}


.media{
    border-bottom: 1px solid #a3a3a3;
}

.media h4 {
    /*color:#00749e;*/
}

.media p {
    /*color:#888;*/
    margin-bottom: 20px;
}

.media a {
    color:#000;
    /*margin: 0 0 15px 5px;*/
    display: inline-block;
text-decoration: underline;
}

.services a h3{
    color:#00AEEF;
    margin-top: 15px;
}



section.services {
    padding:40px 0 10px;
}

.service-callout.vanish p.btn {
    display:none;
}

.service-callout {
    margin-bottom: 40px;
}

.leader-callout {
    margin-bottom: 40px;
    min-height: 740px;
}

.service-callout h3{
color: #00AEEF;
margin-top: 15px;
}


.leaders h3 {
    color: #00AEEF;
    margin: 15px 0 0 0;
}

.leaders h4 {
    font-size: 16px;
    margin:5px 0 10px 0;
}

.job-list ul  {
    list-style-type: none;
    padding: 0;
    }

.job-list ul li {
    border-bottom:1px solid #003b51;
    padding: 10px 10px 10px 0;
}

.job-list ul li a{
    color:#f1f1f1;
    font-size: 18px;
}

.job-list ul li a:hover{
    color:#3fc0eb;

}

希望这足够了css!

1 个答案:

答案 0 :(得分:0)

在这种情况下,您需要调整前导部分,顶部或两者的填充。在您的css文件中,将其添加到底部并相应地调整值。

.leaders {
  padding: 0;
}

.top {
  padding: 0;
}

如果您只想调整顶部和底部填充,可以使用padding: (some amount) 0;这会将左右填充设置为0,将顶部和底部设置为一定量。

请记住,您的问题也可能与边距有关。边距是每个元素之间的空间,填充是元素内的填充。通过观察它可能很难分辨出什么是什么。更改背景颜色有助于识别它。

如果您分享您的css文件,我可以提供更多帮助。