How to Create Border Text, Image, and Background Color Wordpress
My contribution about Create Text Border, Image Border and Background Color Wordpress using CSS Code.
Github Repository : https://github.com/Wordpress/Wordpress
Category : Tutorials
What Will I Learn?
Write here briefly the details of what the user is going to learn in a bullet list.
- You will learn about Create Text Border
- You will learn about Create Text Border
- You will learn about Background Color Wordpress
Requirements
- WordPress Newest Version
- Laptop or COMPUTER PC Windows operating system.
- Chrome, Firefox, Safari, Uc Browser
- Work on all wordpress template
Difficulty
- Basic
Tutorial Contents
- Login to your Wordpress dashboard then go to the APPEARANCE and CUSTOMIZE.
- Next step ; Click on the additional CSS ;
- Ok. Now we will give background color for WordPress By input CSS Code to the WordPress customizer like this :
CSS Code :
body {
background-color: magenta;
}
Copy the code above then paste it to Additional CSS then Click Publish.
Look the background changed to magenta color after apply that CSS Code. - The next method we will create the image border. All of the image of the site will be bordered after apply the following the CSS Code to the Wordpress customizer Then Click PUBLISH.
img {
border: 10px solid;
padding: 15px;
border-image: url(border.png) 60 round;
}
See now, the images on the Wordpress was bordered. - The next step ; we will give border for the TEXT. To do this action you must copy the following code to your Wordpress additional CSS then Click PUBLISH.
p {
border: 10px solid;
padding: 15px;
border-image: url(border.png) 60 round;
}
See that all of the text of each post on your WordPress was bordered.
Curriculum
No related post can be listed yet.
Thank you for reading my tutorial about Wordpress CSS. See you on the next tutorials.
Posted on Utopian.io - Rewarding Open Source Contributors
Your contribution can't be approved yet. Please edit your post to apply for approval.
I'm sorry, but I can't approve it like this. If you already offer CSS tutorials for WordPress, then you should also choose CSS properties that are useful, practical and build on each other. Most themes, for example, allow you to customize the background, so you don't need to go to the CSS editor.
The purpose of the tutorials is that the readers have added value.
By the way: WordPress is always written with a capital P.
You can contact us:
utopian-moderator: https://utopian.io/moderators
[discord]: https://discord.gg/4NYhZU6
i edited that post