[Solved] Wysiwyg for dynamic blocks of content? [closed]

YOu could use divs (styles to make them appear as 3 columns not provided): <div id=”wrapperDIV”> <div id=”col1″>column 1</div> <div id=”col2″>column 2</div> <div id=”col3″>column 3</div> </div> or what i prefer is tables: <table> <tr> <td>col 1</td> <td>col 2</td> <td>col 3</td> </tr> </table> you would create a wysiwyg editor into each column. There are tons of … Read more

[Solved] can someone pls help me to find out opensource drupal themes which has user login options and file upload

Themes are (usually) only styling front-end of your site. Drupal by default (must) have users system login/registration form and all other functionality related to users. When you activate your new theme logout and go to page “/user” to see your loging form. There are also “/user/register”, “/user/password” and some other related with user account functionality. … Read more