Admin Login

ford1001

Member
I was wondering how I would change the default blue color of the admin login page to an image or a different color?
 
Admin CP -> Development -> Admin Style Properties -> Color Palette -> @primaryMedium

This area is only accessible in debug mode. And the changes are overwritten when you upgrade.
 
Could a background image be used? I want to make my admin login page look sexier now :LOL::ROFLMAO:

That requires editing the CSS template:

Admin CP -> Development -> Admin Templates -> login_page.css

Near the top, add the red code:

Rich (BB code):
html
{
	background: @primaryMedium url('PATH/TO/IMAGE.GIF');
}

You need to specify the image location.
 
Top Bottom