简体   繁体   中英

how to add image to the section

I am new to web development and i am using pre-built template and the below code is showing like the blow image and I am trying to replace it but not able to do. how to replace the background image在此处输入图像描述

<section id="cta" class="section">
    <div class="container">
        <div class="row">
            <div class="col-lg-8 col-md-12 align-self-center">
                <h2>BLOGGER</h2>
                 </div>

        </div>
    </div>
</section>

This might help you :)

<html>
    <head>
        <style>
        #cta{
        background-image:url("Here input your image path..");
        }
        </style>
    </head>
<body>
<section id="cta" class="section">
    <div class="container">
        <div class="row">
            <div class="col-lg-8 col-md-12 align-self-center">
                <h2>BLOGGER</h2>  <!-- you can just remove it..Since this is not background image but a heading-->
                 </div>
        </div>
    </div>
</section>
</body>
</html>

the background is set in css. need to know your css. you can try to overwrite the background .

.row {
        background-image: url(image.jpg);
        background-color: #c7b39b;
    }

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM