How to reduce margin of my right side sidebar of blogger by css
This will reduce the gap between right border and right inner side, margin.
#sidebar-right-1 {
margin-right:-10px;
}
This will reduce the gap between left border and left inner side, margin.[ .column-right-inner] this code will reduce the gap between right side sidebar and blog post left side
#sidebar-left-1 {
margin-right:-20px;
}
.column-right-inner {
margin-left:-25px;
}
How to reduce margin of my left side sidebar of blogger by css
#sidebar-left-1 {
margin-left:-10px;
}
How to hide navbar of blogger by css
#navbar-iframe {
display: none !important;
}
How to control sidebar widget of blogger|Border|Margin|Padding|Background
How to make style of text of blogger | Hover | control font style
h4:hover{
font-size:2em;
background-color:red;
}
All this posted and published in the blog
Leave a Reply