Попробуйте:
Перейдите в «Шаблон»> «Редактировать HTML»Нажмите внутри редактора HTML
. Используйте CTRL+F
, чтобы найти второе <head/>
в HTML вашего блога.Прошлый данный код Выше этого.Это для домашней страницы
<b:if cond='data:blog.pageType == "item"'>
<style>
.sidebar {
display:none;
}
#main-wrapper {
width: 99%;
float: none;
margin: 0px auto;
}
html {
overflow-x: hidden;
}
.post {
width: 97%;
margin: 15px auto;
}
.post h3 a {
text-align: center;
padding:5px;
}
</style>
</b:if>
И для статической страницы
<b:if cond='data:blog.pageType == "static_page"
'<style>
.sidebar {
display:none;
}
#main-wrapper {
width: 99%;
float: none;
margin: 0px auto;
}
html {
overflow-x: hidden;
}
.post {
width: 97%;
margin: 15px auto;
}
.post h3 a {
text-align: center;
padding:5px;
}
</style>
</b:if>