Hi this is my first post here... and I came here from some help that m3talc0re gave me in a thread on the SMF forum.
I liked the way that you have the thin coloured bar under your sticky topics and I asked to be shown how to achieve this in my forum.
I did that same method, but instead of using windowbg3, I made it add _sticky (so windowbg_sticky and windowbg2_sticky). I don't use either method now, though. I leave them the same as the others, but separated by a bar (like so:
http://forums.webtechnica.net/support-b8.0/ )
m3talc0re - can you let us know how you did that?
GMC
I received the following response - which was nice BTW
Find:
foreach ($context['topics'] as $topic)
{
After that, add this:
if($topic['is_sticky'] && !$stickybar)
{
echo'';
$stickybar = true;
}
else if(!$topic['is_sticky'] && $stickybar && !$normalbar)
{
echo'<tr><td class="catbg" height="6" colspan="', empty($options['display_quick_mod']) ? '6' : '7', '"></td></tr>';
$normalbar = true;
}
and after I did this I have this problem
Is there a way to fill in the last box - I take off the quick mod box and it doesnt fill through the last post (the end box)
Cheers
GMC

I am running SMF 1.1.15 and its the elctron theme (Not supported by SMF anymore)
Thanks for any help I may be given
GMC
PS My site has some warez amongst many other things so I wont paste a link to it, and I am more than happy to post the full messageindex.template file if that would help