What's new

easily Add a fixed background image to oxwall network homepage / join page

zeal

De Techizard
With a few clicks and steps we can setup a decent fixed background image for your oxwall join page with a simple css code.

CSS: Include this code in your base.css or simply copy and paste in your custom css from your admin dashboard.

Code:
.ewt_join{ 
background-attachment:fixed;
background-image:url('YOUR_BACKGROUND.JPG');
background-position:right top;
background-repeat:no-repeat;
background-size:100%
}

IMPLEMENTING BACKGROUND IMAGE: You will need to login to your cpanel/ftp client. In join_index.html ( ow_system_plugins/base/views/controllers) find {block_decorator and paste this short  code   
Code:
<div class='ewt_join'>
  just above/before it.

then find::
Code:
{/if}

{/block_decorator}
and add this code
Code:
</div>
just after/below it.

save your code and enjoy!
Note: you must enable dev_mod before your changes takes effect.

src
 
Top