New Topic

Reply To: Sidebars not showing on Blog Page

Home › Forum › Help › Sidebars not showing on Blog Page › Reply To: Sidebars not showing on Blog Page

#1971

StartupWP
Keymaster

The child theme has broken style:


/*
Theme Name: StartupPro Child
Template: startuppro
*/

@import url("../startuppro/style.css");body #content {<br>
  padding: 4% 0 ;<br>
}

Should be:

/*
Theme Name: StartupPro Child
Template: startuppro
*/

@import url("../startuppro/style.css");

body #content {
  padding: 4% 0 !important;
}