Hi! So... I love the new elgg beta release. it's way tighter. BUT if you see
http://koreanovernight.com/social-network/
both columns are the same width... i want to make the left column 150px narrower and the right 150px wider. What file do I have to modify?
Thanks!
info@elgg.org
Security issues should be reported to security@elgg.org!
©2014 the Elgg Foundation
Elgg is a registered trademark of Thematic Networks.
Cover image by Raül Utrera is used under Creative Commons license.
Icons by Flaticon and FontAwesome.
- Clarence, Art Director, Web Design@sparkah

Clarence, Art Director, Web Design - 0 likes
- Brett@brett.profitt

Brett - 0 likes
- Shouvik Mukherjee@shouvik

Shouvik Mukherjee - 0 likes
- Brett@brett.profitt

Brett - 0 likes
- Brett@brett.profitt

Brett - 0 likes
..... </div> <div class="elgg-col elgg-col-3of5"> ..... </div>
- Clarence, Art Director, Web Design@sparkah

Clarence, Art Director, Web Design - 0 likes
- Clarence, Art Director, Web Design@sparkah

Clarence, Art Director, Web Design - 0 likes
You must log in to post replies.anybody know?
Have you looked at the theme preview in the admin area? Make sure the Developer Tools plugin is active, then click on the "Developers" menu item, then hit "Theming Preview." Look at the right side of the iframe (or break out of the iframe) and click on "Grid." That will show the css grids available. Inspect the elements to see how to use them.
The bottom line is, Bob, it would require some knowledge of coding. :)
It's only class names so it's not that bad. There are two class names that are important:
elgg-col and elgg-col-XofY
elgg-col-XofY does the magic for resizing. The most granular is 1of5 and the least granular is 1of1. These can be embedded. Without repeating the theming preview, you're probably interested in something like 2of5 for the left and 3of5 for the right.
For your installation, it looks like this should be changed in the page/layouts/custom_index view. I'd create a new plugin that overrides that view and copy the contents of mod/custom_index/views/default/page/layouts/custom_index.php to your new plugin as a start.
I should have said, the class names will look like:
<div class="elgg-col elgg-col-2of5">
You guys both rock! Thanks Shouvik too!!!
fixed! ... i did mention you guys rock right???