Removing Page Titles

GK User
Tue Sep 22, 2015 2:20 am
I would like to remove page titles from pages
User avatar
Fresh Boarder

GK User
Tue Sep 22, 2015 10:45 am
Hello,
Which pages exactly? You can do it in your WordPress dashboard - just remove the title. If you want to hide titles, use the following custom css:
Code: Select all
.page .single-page .entry-title {
  display: none;
}
User avatar
Moderator

GK User
Sun Nov 13, 2016 12:37 pm
I like also hide page titles and actually that whole area reserved for page title.
I have tried this code and it does not work.
Hope you can help me with that :)
User avatar
Junior Boarder

Joshua M
Mon Nov 14, 2016 9:25 am
Could you provide a direct URL to your site where the issue is visible?
User avatar
Moderator

Joshua M
Wed Nov 16, 2016 10:13 am
This title (marked on the screenshot) is your widget title. If you want to remove it, please add the following custom css code:
Code: Select all
.item-body .widget-title {
  display: none;
}
User avatar
Moderator

GK User
Wed Nov 16, 2016 10:40 am
Thanks. Is it possible to remove also that white area where title was, not only the title? Or at least make it smaller?
User avatar
Junior Boarder

Joshua M
Thu Nov 17, 2016 9:28 am
Try to add also this code:
Code: Select all
#page {
  padding-top: 0;
}
User avatar
Moderator

GK User
Thu Nov 17, 2016 9:55 am
Thanks, this worked fine.
User avatar
Junior Boarder

GK User
Fri Nov 18, 2016 11:13 am
I just noticed that white area is still visible on mobile devices. How to remove that?
User avatar
Junior Boarder

Joshua M
Sun Nov 20, 2016 11:07 pm
Try to add:
Code: Select all
#page {
  padding-top: 0!important;
}
.item-body {
  margin-top: 0!important;
}

User avatar
Moderator


cron