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:
But that doesn't work.
Here is how it looks so you understand what I am talking about a bit better.
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.
This is the code for the arrow. I don't have any span css code for it.
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.
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.
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;
}