MyBB Community Forums

Full Version: Need help correcting Div bootstrap Forumdisplay_thread
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Currently my forumdisplay_thread template is as such:
<div class="inline_row bottom-border {$thread_type_class} row small">
	<div class="col-lg-1 text-center padding-8px hidden-xs">
		<span class="tt thread_status {$folder}" title="{$folder_label}"></span>
	</div>
	<div class="col-lg-5 padding-8px">
		<div>
          <span>{$prefix}{$thread['threadprefix']}<span class="{$inline_edit_class} {$new_class}" id="tid_{$inline_edit_tid}"><a href="{$thread['threadlink']}">{$attachment_count} {$thread['subject']}</a></span>{$thread['multipage']}</span>
			<div class="author">{$thread['profilelink']}</div>
		</div>
	</div>
	<div class="col-lg-1 text-center padding-8px">
		{$lang->replies}:&nbsp;<a href="javascript:MyBB.whoPosted({$thread['tid']});">{$thread['replies']}</a>{$unapproved_posts}<br>
		{$lang->views}:&nbsp;<a href="{$sorturl}&amp;sortby=views&amp;order=desc">{$thread['views']}</a>&nbsp;{$orderarrow['views']}
	</div>
	{$rating}
	<div class="col-lg-4 text-center padding-8px padding-right-22px white-space-nowrap">
		{$lastpostdate}<br>
		<a href="{$thread['lastpostlink']}">{$lang->lastpost}</a>: {$lastposterlink}{$modbit}
	</div>
</div>




At the moment the space around the thread status is way bigger than it needs to be, i've hid it on mobile because of that specific reason, what i'm looking to do is make the section around the thread status smaller.

theme im using: https://owlthemes.net/downloads/lifestyl...ybb-theme/
I will suggest you to contact theme seller as it is premium theme and should be covered in support.
I've reached out via their support system. Haven't heard anything at the moment. I am currently using GoDark as my public theme. GoDark will be our dark mode theme.
(2019-08-07, 08:33 AM)ArtForums Wrote: [ -> ]Currently my forumdisplay_thread template is as such:
<div class="inline_row bottom-border {$thread_type_class} row small">
	<div class="col-lg-1 text-center padding-8px hidden-xs">
		<span class="tt thread_status {$folder}" title="{$folder_label}"></span>
	</div>
	<div class="col-lg-5 padding-8px">
		<div>
          <span>{$prefix}{$thread['threadprefix']}<span class="{$inline_edit_class} {$new_class}" id="tid_{$inline_edit_tid}"><a href="{$thread['threadlink']}">{$attachment_count} {$thread['subject']}</a></span>{$thread['multipage']}</span>
			<div class="author">{$thread['profilelink']}</div>
		</div>
	</div>
	<div class="col-lg-1 text-center padding-8px">
		{$lang->replies}:&nbsp;<a href="javascript:MyBB.whoPosted({$thread['tid']});">{$thread['replies']}</a>{$unapproved_posts}<br>
		{$lang->views}:&nbsp;<a href="{$sorturl}&amp;sortby=views&amp;order=desc">{$thread['views']}</a>&nbsp;{$orderarrow['views']}
	</div>
	{$rating}
	<div class="col-lg-4 text-center padding-8px padding-right-22px white-space-nowrap">
		{$lastpostdate}<br>
		<a href="{$thread['lastpostlink']}">{$lang->lastpost}</a>: {$lastposterlink}{$modbit}
	</div>
</div>




At the moment the space around the thread status is way bigger than it needs to be, i've hid it on mobile because of that specific reason, what i'm looking to do is make the section around the thread status smaller.

theme im using: https://owlthemes.net/downloads/lifestyl...ybb-theme/


Kinda not much to go on without looking at the relating css but,  just a thought since there is a padding class, looking at renaming that in snippet then copying that class in css and editing the new renamed class for your specific needs??
Tried doing that. It uses col-lg-1-5 or so. So it's using bootstraps row system, I was wondering if there was a way to embed basic forum display that defaults to MyBB inside of a div, or would it be optimal to fix this with DIV?