Can you provide a link to your site?
No, its currently under stage production
Simply, the big title section is much too big, and I want to make it smaller, such as decreasing the buffer of a normal page,I know its not a normal page but more of a gap, but I still want to know how I could decrease this gap
It’s REALLY hard to answer your question without being able to see it. Can you paste some code?
https://wordpress.org/themes/zerif-lite/
this is the theme im using, you would notice that right under the header there is a very large section where there is a title and buttons, I want to make this section smaller, so I went into the css editer and I couldnt find an option to make it smaller on the style sheet,
sorry if Im being confusing
in your ‘style.css’ file edit the following chunk of css:
.header-content-wrap {
background: rgba(0, 0, 0, 0.5);
position: relative;
-webkit-box-shadow: 0px 5px 11px 0px rgba(50, 50, 50, 0.08);
box-shadow: 0px 5px 11px 0px rgba(50, 50, 50, 0.08);
padding: 285px 0 210px; <------ EDIT THESE NUMBERS
}
The first number is the distance for the top. leave the zero alone. and the third number is the distance for the bottom. hope that helps.
ahhh, thankyou so much, could you tell me how you found it? I was scouring the css file for so long and I just assumed it wouldnt be labled as header
Use the ‘inspect element’ feature on your browser. Mark your post as resolved.