Last active
January 10, 2017 16:45
-
-
Save waynebcox/0485fa7373524fb5134e22bbbb5607e4 to your computer and use it in GitHub Desktop.
Dashboard Branding
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
1) Install WPMU Dev Dashboard. | |
2) Activate Ulitimate Branding plugin. | |
3) Enable Image, Login CSS, and Dashboard Footer Content options. | |
4) Remember to add client logo to Images tab. |
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
body { | |
background: /* use brand specific image such as a repeat of the hero background */ url('http://mobilefit.wpengine.com/wp-content/uploads/2016/07/mobile-fit-login-bg.jpg') center no-repeat; | |
background-size: cover; | |
} | |
#login { | |
width: 320px; | |
padding: 8% 5% 9% 5%; | |
margin: auto; | |
background: rgba(256,256,256,.85); | |
border-left: 1px solid #bbbbbb; | |
border-right: 1px solid #bbb; | |
} | |
/* if the logo is full width | |
.login h1 a { | |
width: 320px !important; | |
background-size: contain !important; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment