
Originally Posted by
aahna
1.) My Description box is very big i want to make my description box small.
Open wistie/css/style.css and find:
Code:
#bodytext {width:550px;height:450px;} then change the height value to a smaller number, i.e. 100px;
You may also take a look at submit_step_2.tpl, find:
Code:
<textarea name="bodytext" class="bodytext" rows="40" cols="80"
and lower the value of rows

Originally Posted by
aahna
2.) I have kept maximum story length 150 characters only but here i can enter more then 1000 characters, i want my description box like Digg.com, users are unable to type more then 150 characters in Digg.com, i want same like this in my description box so users can't type more then 150 characters in description box.
You can do this in JavaScript, something like this: http://javascript.internet.com/forms...-textarea.html or these: http://www.google.com/search?hl=tl&q=limit+textarea

Originally Posted by
aahna
3. I want to hide these URL's text on submit step 2, Image URL, Story URL and URL Title.
On your submit_step_2.tpl, find and delete:
PHP Code:
{if $Submit_Show_URL_Input eq 1}
<h2>{#PLIGG_Visual_Submit2_Source#}</h2>
<label>{#PLIGG_Visual_Submit2_NewsURL#}: </label>
<a href="{$submit_url}" class="simple">{$submit_url}</a><br /><br/>
{if $submit_url_title neq "1"}
<label>{#PLIGG_Visual_Submit2_URLTitle#}: </label>{$submit_url_title}
{/if}
</fieldset>
{/if}
But for the Image URL, you need to modify the Upload mod templates.