Looks like css cascading issue. try following :
.singular .entry-header {
padding: 1%;
display: none;
}
if this fails, try using inspect element to see which rule is overriding your css.
from what I found, there is a margin top in your footer.
Reduce it or remove it.
http://prntscr.com/1deoia7
Thanks mate @jaykpatel
Your codes works fine in the preview, however something overrides on the actual site. Sorry.
Thanks @ipjuniordeveloperaki bro,
Kindly help me how to reduce or remove the footer margin. May be you are right…Thanks again.
footer margin is not the problem.There is Empty header tag.
https://snipboard.io/UlP7mw.jpg
@wpartistdedigital Where are you writing the css?
@jaykpatel I am using a plugin called Simple Custom CSS.
However want to remove this bit: https://snipboard.io/LAMJ45.jpg
You should create a child theme and add CSS changes through it. In your case you need simple CSS child theme.
https://www.hostinger.com/tutorials/how-to-create-wordpress-child-theme
@jaykpatel I am using child theme, copied over header and footer files too. But couldn’t figure out what or where to edit it to achieve the desired output. Please help in a detailed way… https://snipboard.io/K5hGro.jpg
@jaykpatel @ipjuniordeveloperaki – Hi guys, I figured out something. If I change this value (check image – https://snipboard.io/OLuFIq.jpg) I can get the desired look. However I couldn’t find out which exact CSS file to edit and where exactly should I alter in the admin area.
If I know the exact file, I can copy it to the child theme and alter the file.
Please help…
as I can see, you do use a child theme. http://prntscr.com/1dg1gpl
So take your code and paste it in child theme -> style.css file
If it’s not working try put !important on your code.
.class {
color: #000 !important;
}
@wpartistdedigital
1. Press CTRL + F5 (2-3 times) or check it from Incognito Window
2. Be sure from themes that Child theme is selected
Also, is running a media query so try do the same:
http://prntscr.com/1dg9zvn
First, remove the plugin simple custom css. After that write your custom css in the file style.css.