Oscar David Gm
asked 9 years ago
  1. ¿Como borro el related post del tema? (Quiero añadir otro de un plugin)
  2. ¿Puedo borrar el Left Sidebar permanentemente? Incluso de la version para celular, quisiera que el main sidebar sea permanente.
  3. ¿Como hago para ponerle mas tamaño a el main sidebar, es decir, que sea del mismo tamaño que el secundary sidebar.
  4. ¿Como hago para poner el tema en pantallla completa? Full pantalla…

Gracias de antemano. Espero puedan responder en español. Mi blog es http://www.buenaparaguana.com

1 Answers
DominicStaff
answered 9 years ago

Hi,

  1. Add the following code to the style.css file:
    .related-posts { display: none;}

  2. To remove the left sidebar and make full width your site, you can add the following code to the style.css file:
.site-nav {
    display: none!important;
}
.show-site-nav {
    display: none;
}

.container {
  max-width: 100%;
}
@media (min-width: 1200px) {
.site-main-inner {
  margin-left: 180px;
}
}

Also, If you want to remove the right sidebar(secondary) and make full width your site, you can add the following code to the style.css file:

.page-template-page-fullwidth .primary-inner {
    margin-right: 20px;
}
#secondary {
    display: none;
}
@media (min-width: 980px) {
.primary-inner {
  margin-right: 0px !important;
}
}

After removing the right sidebar, if you want to reduce size of left sidebar(main), you can add the following code to the style.css file:

@media (min-width: 1200px) {
.site-nav-inner {
  width: 300px;
}
.site-main-inner {
  margin-left: 324px;
}
}
.container {
  max-width: 100%;
}

NOTE: I don’t know your language. Please use English languages for questions later.

Hope this helps !

Powered by DW Question & Answer Pro