top of page

To load wordpress dashboard add wp-adminto site URL

To edit theme. appearance -> theme editor

Admins Columns plugin

Hide title - plugin

With WAMP disable IIS
​

Reduce space around headers

/* Reduce white space around stuff */ @media (min-width: 700px) { .widget .widget-title { margin-bottom: 2rem; } .post-inner { padding-top: 3rem; } .footer-widgets-outer-wrapper { padding: 3rem 0; } #site-footer { padding: 3rem 0; } } .singular .entry-header { padding: 2rem 0; } body:not(.singular) main > article:first-of-type { padding: 2rem 0 0; } .archive-header { padding: 2rem 0; } .error404 #site-content { padding-top: 2rem; }

​

​

OR

.page-wrap { padding: 0px !important; }

​

The simple way to reduce the white space was to edit style.css

.singular .entry header padding  8 rem  changing 8rem to 0rem

​

similarly with post-inner

​

Also edit

Kadenze row.style.build.css

kt-inside-inner-col 25px - 25px 0 to   > 25px 0 px 0

​

​

​

bottom of page