Last active
December 27, 2018 11:28
-
-
Save bmiro/1c1b4cf5573f444dd63f4ceaedf67f29 to your computer and use it in GitHub Desktop.
WordPress align logo and site title (all medias)
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* Title color */ | |
.site-header .site-branding .site-title a { | |
color: #7dae33ff; | |
} | |
/* Align logo and title for al devices */ | |
@media (min-width:769px) { | |
.site-branding { | |
display: inline-block; | |
/* Adjunst depending text lenght */ | |
max-width: 400px !important; | |
} | |
.site-logo { | |
float: left; | |
} | |
.site-title { | |
float: left; | |
margin-right: 20px; | |
/* Adjunst depending text lenght */ | |
max-width: 300px; | |
} | |
} | |
@media (max-width: 769px) and (min-width: 481px) { | |
.site-branding { | |
display: inline-block; | |
/* Adjunst depending text lenght */ | |
max-width: 400px !important; | |
} | |
.site-logo { | |
float: left; | |
} | |
.site-title { | |
float: left; | |
margin-right: 20px; | |
/* Adjunst depending text lenght */ | |
max-width: 300px; | |
} | |
} | |
@media (max-width: 480px) { | |
.site-branding { | |
display: inline-block; | |
/* Adjunst depending text lenght */ | |
max-width: 300px !important; | |
} | |
.site-logo { | |
float: left; | |
margin-top: 10px; | |
} | |
.site-title { | |
float: left; | |
margin-right: 20px; | |
/* Adjunst depending text lenght */ | |
max-width: 150px; | |
/* Adjunst depending text lenght */ | |
font-size: 1.5em !important; | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment