This topic is empty.
-
AuthorPosts
-
-
serhatGuestI 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? -
YogendraGuestHello 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
-
PaulGuestThanks Yogendra, and what code do I need to use if I want the red box to be removed?
-
YogendraGuestHello Paul,
Use this CSS
#page-title{
display: none;
}Paste this CSS in Appearance->Customize->Additional CSS
Regards
-
PaulGuestThank you so much!
-
-
-
AuthorPosts