Customizing SMF > Modifications and Packages
Advanced Recent Posts
Afro:
Ok, cool, i just tried them together and they work fine.
weldone.
I will be waiting for the updates...
big ups...
Labradoodle-360:
Thanks, glad you like it :)
Hoping to update this shortly, finishing up "AddThis" today along with "Playlist BBC" hopefully.
Labradoodle-360
Afro:
Ok, there is a little problem now..
the mod squeezed the posts made on the forum..
just click on any topic and see the posts..
they are packed on the left side...
www.afrowall.com
Labradoodle-360:
Okay...I just confirmed this is an issue with my mod that was a dumb mistake on my part, and overlooked by the SMF Cust. Team.
For now, here is the fix. I will update this to v1.1 which will be a bugfix. v1.2 will include the updates I was planning.
Bugfix
./Themes/default/css/index.css
--- Code: (Find) ---.post
{
background-color: #F6F6F6;
width: 20%;
text-align: center;
}
.post_hover:hover,.post_hoverHover
{
background: #E0E6E6;
}
--- End code ---
--- Code: (Replace) ---.arppost
{
background-color: #F6F6F6;
width: 20%;
text-align: center;
}
.arppost_hover:hover,.arppost_hoverHover
{
background: #E0E6E6;
}
--- End code ---
./Themes/default/BoardIndex.template.php
--- Code: (Find) --- <tr>
<td class="post post_hover arp_left">', $post['link'], '</td>
<td class="post post_hover arp_rest">', $post['poster']['link'], '</td>
<td class="post post_hover arp_rest">', $post['board']['link'], '</td>
<td class="post post_hover arp_rest">', $post['time'], '</td>
</tr>';
--- End code ---
--- Code: (Replace) --- <tr>
<td class="arppost arppost_hover arp_left">', $post['link'], '</td>
<td class="arppost arppost_hover arp_rest">', $post['poster']['link'], '</td>
<td class="arppost arppost_hover arp_rest">', $post['board']['link'], '</td>
<td class="arppost arppost_hover arp_rest">', $post['time'], '</td>
</tr>';
--- End code ---
For you, simply remove the last td, which includes $post['time'].
Basically what was happening was MY class "post" was already existing for posts, which I completely overlooked, so it was changing the style, so simply changing the class name and then updating the call to the class will fix the issue.
I very much appreciate you pointing this out!
Labradoodle-360
Afro:
Ok, very good..
here is another one..
Is it possible to make the width of the topic name table columN a little bigger ..
THE TOPIC NAME IS ALWAYS LONGER THAN POSTER NAME AND BOARD NAME..
Its ok the way it is but i just need it for my personal site..
Navigation
[0] Message Index
[#] Next page
[*] Previous page
Go to full version