Jump to content
WebFlake
  • 0

How to add bottom Bar in Sidebar Blocks?


nexus

Question

8 answers to this question

Recommended Posts

  • 0

You have to edit the sideblock template (such as: hookRecentTopics etc. etc.)example: (not sure if you want to delete the top bar on the blocks, so i leave it for now).

<if test="recenttopics:|:is_array( $topics ) && count( $topics )"><div class='ipsSideBlock clearfix'>	<h3>{$this->lang->words['recently_added_topics']}</h3>	<div class='_sbcollapsable'>		<ul class='ipsList_withminiphoto'>		<foreach loop="topics_hook:$topics as $r">		<li class='clearfix'>			{parse template="userSmallPhoto" group="global" params="$r"}			<div class='list_content'>				<a href="{parse url="showtopic={$r['tid']}" base="public" template="showtopic" seotitle="{$r['title_seo']}"}" rel='bookmark' class='ipsType_small' title='{parse expression="strip_tags($r['topic_title'])"} {$this->lang->words['topic_started_on']} {parse date="$r['start_date']" format="LONG"}'>{$r['topic_title']}</a>				<p class='desc ipsType_smaller'>					<if test="$r['members_display_name']">{parse template="userHoverCard" group="global" params="$r"}<else />{$this->settings['guest_name_pre']}{$r['starter_name']}{$this->settings['guest_name_suf']}</if>					- {parse date="$r['start_date']" format="short"}				</p>			</div>		</li>		</foreach>		</ul>	</div>	<h3>{$this->lang->words['recently_added_topics']}</h3></div></if>
I have just pasted the h3 tag under the closing div of sbcollapsable

thats what i was thinking but i was trying to find a different way or quicker way to do it but nice anyways

Link to comment
Share on other sites

Guest
This topic is now closed to further replies.
×
×
  • Create New...