Login page full size background image

Permalink 1 user found helpful
Hi.
Is it possible to make a fullsize background image on the login page?

 
PineCreativeLabs replied on at Permalink Reply
PineCreativeLabs
I do not believe you can do this directly. However, you can do the following:

1. Have a theme installed that uses a full-screen background.

2. Edit the "config/site_theme_paths.php" file so that the login page uses the theme of your choice. Below is a "how-to" on how to do that:

http://www.concrete5.org/documentation/how-tos/designers/themimg-sy...

Or, I could be hired to do this for you. If interested, send me a private message.
enlil replied on at Permalink Best Answer Reply
enlil
Edit the login page and include an html block with something like this:

<style>
body {
background-image: url("http://yoursite.com/images/c5earth.jpg");
background-repeat: no-repeat;
background-attachment: fixed;
background-position: center top;
background-size: cover;
}
</style>
Resonate replied on at Permalink Reply
Works like a charm!

Thanks