Thread Starter
iNadav
(@inadav)
Do you know how can I move my soical links to the right and the logo to the left? (switch them)
Your logo is already floated to the left and the social icons to the right. Perhaps you want the social icons to be on the left and the logo on the right?
If this is the case, find the following styles in the style css:
header#masthead .hgroup .logo
and
header#masthead .hgroup #header-sidebar
and replace their parameters with these:
header#masthead .hgroup .logo {
display: block;
float: right;
max-width: 100%;
}
header#masthead .hgroup #header-sidebar {
padding-top: 15px;
padding-bottom: 15px;
height: 100%;
position: absolute;
left: 0px;
top: 0px;
box-sizing: border-box;
-moz-box-pack: center;
-moz-box-align: center;
display: -moz-box;
float: left;
}
Make a copy of your style.css file before you attempt the changes!