Do it yourself: CSS für Profil und Blog
27.01.2016 um 08:46@tic
@Creizie
Für die Zentrierung reicht im .main schon ein einfaches text-align: center:
.main {
width: 100% !important;
max-width: 100% !important;
padding-top: 0px !important;
padding-left: 0px !important;
margin-right: auto !important;
margin-left: auto;
background: transparent;
text-align: center;
}
Das GB wird zentriert, in dem man bei ul#gb_posts unter margin den rechten und linken Abstand auf auto setzt:
ul#gb_posts {
list-style-type: none;
list-style-position: outside;
padding: 0px;
width: 650px;
margin: 0px auto 10px auto !important;
display: block;
}
Entferne aber auch dein css
ul#gb_posts {
margin-left: 550px !important;
}
@Creizie
Für die Zentrierung reicht im .main schon ein einfaches text-align: center:
.main {
width: 100% !important;
max-width: 100% !important;
padding-top: 0px !important;
padding-left: 0px !important;
margin-right: auto !important;
margin-left: auto;
background: transparent;
text-align: center;
}
Das GB wird zentriert, in dem man bei ul#gb_posts unter margin den rechten und linken Abstand auf auto setzt:
ul#gb_posts {
list-style-type: none;
list-style-position: outside;
padding: 0px;
width: 650px;
margin: 0px auto 10px auto !important;
display: block;
}
Entferne aber auch dein css
ul#gb_posts {
margin-left: 550px !important;
}