Page Title
I have two question.
1- I want to resiz Page Title Box (the red box).
2- There is Laptop pic on Home Backgroun Image. How can add that image?
Replies (4)
-
October 9, 2017 at 3:28 pm
I have two question.
1- I want to resiz Page Title Box (the red box).
2- There is Laptop pic on Home Backgroun Image. How can add that image? -
October 9, 2017 at 4:42 pm
Hello Serhat,
1- I want to resize Page Title Box (the red box).
You need to write CSS for that#page-title h1 {
margin-top: 0px;
}#page-title .bread-crumb {
margin-top: 0px;
margin-bottom: 0px;
}You can adjust the px number according to your need. Increase it or decrease it to adjust the heights.
The first CSS will be used to give page title margin from top and the second CSS is for the breadcrumb height from top and bottom2- There is Laptop pic on Home Background Image. How can add that image?
You can go to Appearance->Customize->General Settings. Here you will find an option to upload Background Image.
This is the image we have used in home background image.
https://pixabay.com/en/girl-woman-working-office-business-2618562/Regards
-
November 17, 2017 at 9:08 pm
Thanks Yogendra, and what code do I need to use if I want the red box to be removed?
-
November 18, 2017 at 11:28 am
Hello Paul,
Use this CSS
#page-title{
display: none;
}Paste this CSS in Appearance->Customize->Additional CSS
Regards
-
November 18, 2017 at 6:57 pm
Thank you so much!