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

join page tabel [Solved] | Forum

Blukkie
Blukkie Sep 27 '13
Dear Oxwall community!


On our join page, the tabel is cropping from the right: click to see the join page

As you see, on the right its not completing. I tried to remove the description  text because I thought it maybe would be too long. But it gives me the same problem.


It's not a big problem and it works fine. Just looks a bit glitchy.
Anyone with information about how I can fix this?

Thanks for reading,

Blukkie


The Forum post is edited by Alia Oct 4 '13
Alia Team
Alia Sep 30 '13
Blukkie,

Try increasing width of the form.

Go to admin panel>>appearance>>edit theme>>css.
Add following piece of code:

.ow_superwide {    overflowhidden;    width: 85%;}

Save changes.
Refresh your join page. Does everything fit now?
If nothing changes go to ow_includes/config.php  file via FTP or control panel and set DEV mode to "true". Save changes. Refresh your join page.

If this helps and everything fits on your join page, check all other pages of your site as well.
Do they look ok?
You need to check all other pages because .ow_superwide  is a site wide class and is used for other pages as well.


Blukkie
Blukkie Oct 4 '13
Thanks Aliia! 

Works perfect directly after a simpel refresh. :)

Blukkie
Blukkie Oct 18 '13
Hmm seems I didn't look that good.

On profiles the class gets too big and doesnt fit together with the side bar. So the site is putting it down like here


How is it possible to do the '.ow_superwide {    overflowhidden;    width85%;}'  only for the join page?

Alia Team
Alia Oct 20 '13
Blukkie,

Remove CSS you have added before.

1. Add new class in admin panel>>edit theme>>csss
EX: .ow_superwide_join_page {    overflowhidden;    width: 85%;}

2.
Assign this new class to join page instead of ow_superwide: join_index.html ( ow_system_plugin/base/views/controllers)

WHAT YOU HAVE: {block_decorator name="box" type="empty" addClass="ow_superwide ow_automargin"}

WHAT YOU SHOULD HAVE : {block_decorator name="box" type="empty" addClass="ow_superwide_join_page ow_automargin"}

Do the refreshing and DEV mode if needed to see the changes.
Check your join and profile pages.
Should work for you.