This should do it, but I'm not sure that it won't break somewhere else.2McAbre wrote:I located and edited the code in both:
styles/subAndreas08/template/posting_smilies.html
styles/subAndreas08/template/posting_progress_bar.html
To get the tables to fit within the generated popup window, but cannot for the life of me figure out how to make the scrollbar go away. You can see in the attached images that the tables fit the window, but the scrollbar remains.
Code: Select all
body {
/* Text-Sizing with ems: http://www.clagnut.com/blog/348/ */
font-family: Verdana,Tahoma,Arial,sans-serif;
color: #303030;
background-color: #e8eaec;
font-size: 76%; /* This sets the default font size to be equivalent to 10px */
margin: 0;
min-width: 750px;
}
Code: Select all
body {
/* Text-Sizing with ems: http://www.clagnut.com/blog/348/ */
font-family: Verdana,Tahoma,Arial,sans-serif;
color: #303030;
background-color: #e8eaec;
font-size: 76%; /* This sets the default font size to be equivalent to 10px */
margin: 0;
}
Hi and Thanks! I never would have associated that in the css file with the problem. I did work with it a little and found if I removed the min-width: 750px completely, it still scrolled so I altered it to a different number which works very nicely.tagalong wrote:This should do it, but I'm not sure that it won't break somewhere else.I did a brief look through on my site and it looked OK though, let me know if it works or not.
Open subAndreas08/theme/stylesheet.css
Also, can you post what your changes are in posting_smilies.html & posting_progress_bar.html?
Thanks!
Code: Select all
body {
/* Text-Sizing with ems: http://www.clagnut.com/blog/348/ */
font-family: Verdana,Tahoma,Arial,sans-serif;
color: #303030;
background-color: #e8eaec;
font-size: 76%; /* This sets the default font size to be equivalent to 10px */
margin: 0;
min-width: 750px;
}
Code: Select all
body {
/* Text-Sizing with ems: http://www.clagnut.com/blog/348/ */
font-family: Verdana,Tahoma,Arial,sans-serif;
color: #303030;
background-color: #e8eaec;
font-size: 76%; /* This sets the default font size to be equivalent to 10px */
margin: 0;
min-width: 200px;
}
Code: Select all
<td class="row1" align="center" valign="middle"><!-- BEGIN smiley --> <a href="#" onclick="insert_text('{smiley.A_SMILEY_CODE}', true, true); return false;"><img src="{smiley.SMILEY_IMG}" width="{smiley.SMILEY_WIDTH}" height="{smiley.SMILEY_HEIGHT}" alt="{smiley.SMILEY_CODE}" title="{smiley.SMILEY_DESC}" hspace="2" vspace="2" /></a> <!-- END smiley --><br /><a class="nav" href="#" onclick="window.close(); return false;">{L_CLOSE_WINDOW}</a></td>
</tr>
</table>
</td>
</tr>
</table>
<!-- INCLUDE simple_footer.html -->
Code: Select all
<td class="row1" align="center" valign="middle"><!-- BEGIN smiley --> <a href="#" onclick="insert_text('{smiley.A_SMILEY_CODE}', true, true); return false;"><img src="{smiley.SMILEY_IMG}" width="{smiley.SMILEY_WIDTH}" height="{smiley.SMILEY_HEIGHT}" alt="{smiley.SMILEY_CODE}" title="{smiley.SMILEY_DESC}" hspace="2" vspace="2" /></a> <!-- END smiley --><br /><br /><a class="nav" href="#" onclick="window.close(); return false;">{L_CLOSE_WINDOW}</a><br /><br /><!-- INCLUDE simple_footer.html --></td>
</tr>
</table>
</td>
</tr>
</table>
Code: Select all
<td valign="top" class="row1" align="center"><br /><span class="genmed">{L_UPLOAD_IN_PROGRESS}</span><br /><br /><div style="align:center">{PROGRESS_BAR}</div><br /><br /><span class="genmed"><a href="#" onclick="window.close(); return false;">{L_CLOSE_WINDOW}</a></span><br /><br /></td>
</tr>
</table>
</td>
</tr>
</table>
<script type="text/javascript">
// <![CDATA[
close_popup();
// ]]>
</script>
<!-- INCLUDE simple_footer.html -->
Code: Select all
<td valign="top" class="row1" align="center"><br /><span class="genmed">{L_UPLOAD_IN_PROGRESS}</span><br /><br /><div style="align:center">{PROGRESS_BAR}</div><br /><br /><span class="genmed"><a href="#" onclick="window.close(); return false;">{L_CLOSE_WINDOW}</a></span><br /><br /><!-- INCLUDE simple_footer.html -->
</td>
</tr>
</table>
</td>
</tr>
</table>
<script type="text/javascript">
// <![CDATA[
close_popup();
// ]]>
</script>
How did you do that ?dontcoz wrote:i agree:)
i've increased the default size to 80%