We build. You grow.

Get best community software here

Start a social network, a fan-site, an education project with oxwall - free opensource community software

Editing enter page. | Forum

Matthew D Zavoras
Matthew D Zavoras Mar 4 '13
Do anyone know what file or files I would have to edit to improve the look of the  enter page if you have your site enabled to force users to join or login before proceeding?
Attachments:
  forceloginpage.jpg (102.87Kb)
Matthew D Zavoras
Matthew D Zavoras Mar 6 '13
Anyone have an idea or know?
Ayo Tunde
Ayo Tunde Apr 27 '13
Do you mean something like this?
Attachments:
  sample1.png (303.58Kb)
Ayo Tunde
Ayo Tunde Apr 27 '13
Or do you mean like this?
Attachments:
  sample2.png (279.86Kb)
Matthew D Zavoras
Matthew D Zavoras Apr 30 '13

Quote from Ayo Tunde Or do you mean like this?

This page, your sample 2.
The Forum post is edited by Matthew D Zavoras Apr 30 '13
Ayo Tunde
Ayo Tunde Apr 30 '13
What you are seeing in the "sample2.png was made using css. All I did was to identify the class of the background and css it to background image.
HINTS:
* The background class = .ow_sign_in_cont (in base.css)
In my own case, these are my css declarations:
.ow_sign_in_cont {
    width:100%;
    height:100%;
    position:absolute;
    top:0;
    left:0;
    background: #75C5F0 url(images/signin.png) no-repeat;
    background-size: 100%;
    z-index:97;
*Just create your own background image and put inside your theme's image folder and declare it in background of your css.

Hope this help.