YAFLogo

Beetlebub
  • Beetlebub
  • 50.6% (Neutral)
  • YAF Forumling Topic Starter
16 years ago
I was checking a development install of the latest YAF, and noticed that after clicking the "Send Email" button under a post, the page that came up was formatted a bit strangely. The left side which contained the labels (Subject, Body) took up a lot of room, and the textboxes for the respective fields were very small.

I changed ~\pages\im_email.ascx to this:


<%@ Control Language="c#" CodeFile="im_email.ascx.cs" AutoEventWireup="True" Inherits="YAF.Pages.im_email" %>
<YAF:PageLinks runat="server" ID="PageLinks" />
<div align="center">
<table class="content" width="75%" border="0" cellpadding="0" cellspacing="1">
	<tr>
		<td colspan="2" class="header1">
			<YAF:LocalizedLabel ID="LocalizedLabel1" runat="server" LocalizedTag="TITLE" />
		</td>
	</tr>
	<tr>
		<td class="postheader" width="150">
			<YAF:LocalizedLabel ID="LocalizedLabel2" runat="server" LocalizedTag="SUBJECT" />
		</td>
		<td class="post">
			<asp:TextBox runat="server" ID="Subject" width="100%" /></td>
	</tr>
	<tr>
		<td class="postheader" valign='top' width="150">
			<YAF:LocalizedLabel ID="LocalizedLabel3" runat="server" LocalizedTag="BODY" />
		</td>
		<td class="post">
			<asp:TextBox runat="server" ID="Body" TextMode="multiline" Rows="10" width="100%" />
		</td>
	</tr>
	<tr class="postfooter">
		<td colspan="2" align="center">
			<asp:Button runat="server" ID="Send" OnClick="Send_Click" />
		</td>
	</tr>
</table>
</div>
<div id="DivSmartScroller">
	<YAF:SmartScroller ID="SmartScroller1" runat="server" />
</div>

This changed seems to help line things up a bit nicer. Hopefully this will help someone else out there.

Sponsor
mddubs
  • mddubs
  • 100% (Exalted)
  • YAF Developer
16 years ago
I've noticed that too, even here on the support forum. I'll add that fix to source sometime soon. Nice work.
UserPostedImage 

www.bunkerhollow.com  | www.careercomputing.com 

When I post fp:mddubs in a topic, I'm leaving my footprint there so I can track it once I get into coding/supporting. (Yes I stole this off Mek 🙂, who stole this off Ederon 🙂 )

Jaben
  • Jaben
  • 100% (Exalted)
  • YAF Developer
16 years ago
Thanks. Just one of those things on the (low) priority list. Thanks for committing that mddubs.
mddubs
  • mddubs
  • 100% (Exalted)
  • YAF Developer
16 years ago
Committed.
UserPostedImage 

www.bunkerhollow.com  | www.careercomputing.com 

When I post fp:mddubs in a topic, I'm leaving my footprint there so I can track it once I get into coding/supporting. (Yes I stole this off Mek 🙂, who stole this off Ederon 🙂 )