Arrow Span being repeated in quick reply

faeronsayn

Well-known member
I just want to know how to remove the arrow part from the quick reply. However, the arrow is in the message template instead of the messageuserinfo template.

I tried this in the message template, wrapping it around the xen if tags like so:

Code:
<xen:if is="!{$isQuickReply}">
                <span class="arrow"><span></span></span>
</xen:if>

But that doesn't work.

Here is how it looks so you understand what I am talking about a bit better.

qfrkmXw.png


Also because of the Arrow's absolute positioning or something it seems to appear right at the top of the page. Below the navigation, just floating on it's own. The following picture describes it.

GgfoJij.png


This is the code for the arrow. I don't have any span css code for it.

Code:
.message .arrow 
{
 
position: absolute;
top: 16px;
right: -16px;
 
 
display: block;
width: 0px;
height: 0px;
line-height: 0px;
 
border: 10px solid transparent;
border-right-color: #3A3A3A;
border-left: none;
 
/* Hide from IE6 */
_display: none;
}
 
I need a link to your page to be able to help you. I believe, it would be much faster than messing around myself with it on my end to make it look like yours does so I can try to fix it.
 
Top Bottom