You want me to add this where?
<img src="image source" />
-> Go to Admin Panel and open setting-english language (default).It only adds image to one side of the join page. How to add a full width image in the background?
-> Search the string of BASE{text key='base+join_promo'}
-> Insert the html image code something like the following example: <img src="http: // your-image-address "> into the box translation. (You can also inserttexts or certain sentences as you want)
-> Click Save
->See your join page to ensure a successful result
See Live Sample: Join Page
contact me if you have a problem. I am ready to help you for free
Hey Umair,
That looks right, good job!
Here's a good tool to use to inspect each element that you want to delete. Press F12 on your keyboard...see that...that's how you inspect a web site. It's what I just used to find the CSS code that's showing what you want to take out.
.ow_tr_first th >>> SEE MY PICS on how to inspect the page.
Now .ow_tr_first th shows that area you want to take out...so when you want to commit something out using CSS you can by putting this bit of code {display: none} as you did above after the element code..like so:
.ow_tr_first th {display: none} /*takes out BASIC tab area on sign-up page*/
its a good ideal to put a note after your code so you know what its doing...like so
/*takes out BASIC tap area on sign-up page*/
This is how you can take out many thing using this trick. But be carful because something's takes out more then what you want sometimes. A good ideal is to back up your database once your done editing your css stuff. This way when you start to edit it again and LOCK your self out from your site like I did...you can just re-install your backup and get back in...lol
How to apply it!
Go to ADMIN/THEME/CSS and in the "EDIT" area put that code in there and press save. You will have to change your config file from:
define('OW_DEV_MODE', false); to define('OW_DEV_MODE', true); to see the changes.
Once done with all your changes then put define('OW_DEV_MODE', true); back to
define('OW_DEV_MODE', false);
As for the white page covering your background...this is how it works. You have your background right...then you have a table over your background that's white with all your content on it...this how it works. Now if you don't want that table to have color then you have to play with the "base" css page it self and change a few things in that area.
Wilson