Thread Rating:
  • 1 Votes - 5 Average
  • 1
  • 2
  • 3
  • 4
  • 5
 Article Gallery
leefish Offline
Hamster
*****
Posts: 1,009
Joined: Apr 2010
Post: #121
RE: More side boxes for Article Gallery
Maybe put another ad box in? Or do a link to some pics in the pictures forum? You can use a gallery, or try a featured thread, but on showthread rather than portal?


[Image: leelink.gif]
MYBB1.6 & XThreads
12-22-2010 10:34 AM
Visit this user's website Find all posts by this user Quote this message in a reply
RateU Offline
Administrator
*******
Posts: 2,350
Joined: Mar 2010
Post: #122
RE: More side boxes for Article Gallery
If you have adsense, maybe you can put adsense vertical/skyscraper banner format there?
Or maybe put your affiliate vertical banner?
Or maybe you can move the "User(s) Browsing Forum" part to the side?

If you want it two column only, maybe you can move the right column to the left, so, you have two column only?

12-23-2010 01:45 AM
Find all posts by this user Quote this message in a reply
RateU Offline
Administrator
*******
Posts: 2,350
Joined: Mar 2010
Post: #123
RE: Article Gallery
(12-22-2010 09:46 AM)RocketFoot Wrote:  Question...is there anyway to disable quoting in the article forum?  When someone quotes an article with photos, the photos break my margins!  I'd rather disallow quoting.

Do you want to "disable" images in quote only, or you want to "disable" the entire quote?

12-23-2010 01:47 AM
Find all posts by this user Quote this message in a reply
RocketFoot Offline
Senior Member
****
Posts: 338
Joined: Jul 2010
Post: #124
RE: Article Gallery
(12-23-2010 01:47 AM)RateU Wrote:  
(12-22-2010 09:46 AM)RocketFoot Wrote:  Question...is there anyway to disable quoting in the article forum?  When someone quotes an article with photos, the photos break my margins!  I'd rather disallow quoting.

Do you want to "disable" images in quote only, or you want to "disable" the entire quote?
Disabling images in quotes would be good, but I would only want to do it in the article forum...Is this possible?

[Image: gallery_2_628_39582.jpg]
12-23-2010 04:24 AM
Find all posts by this user Quote this message in a reply
RocketFoot Offline
Senior Member
****
Posts: 338
Joined: Jul 2010
Post: #125
RE: More side boxes for Article Gallery
2 column might be good...3 is a little crowded especially on a 1024 screen.  

What's the easiest way to move the right columns to the left and then expand the center section?  This is my current atcgal_forumdisplay_threadlist bit:

Code:
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
<table border="0" cellspacing="{$theme['borderwidth']}" cellpadding="{$theme['tablespace']}" class="tborder" style="clear: both;">
	<tr>
		<td class="thead" colspan="{$colspan}" align="center">
				<strong>{$foruminfo['name']}</strong>
		</td>
	</tr>
</table>
<br class="clear" />
<div class="float_left"><a href="http://www.7173mustangs.com/newthread.php?fid=33"><img src="http://www.7173mustangs.com/images/newthread.png"></a>
</div>
<div class="float_right">
	{$searchforum}
</div>
<table border="0" cellspacing="{$theme['borderwidth']}" cellpadding="{$theme['tablespace']}" style="clear: both; width: 100%; background: #;">
	<tr>
		<td valign="top" width="225px" colspan="{$colspan}">
			<table border="0" cellspacing="{$theme['borderwidth']}" cellpadding="{$theme['tablespace']}" class="tborder" style="clear: both;">
				<tr><td class="thead"><strong>Categories</strong></td></tr>
				<tr><td class="trow1"><a href="{$forumurl_q}filtertf_atcgal=71-73 General Info"><span><strong>71-73 General Info</strong></span></a></td></tr>
				<tr><td class="trow1"><a href="{$forumurl_q}filtertf_atcgal=71-73 Tech Info"><span><strong>71-73 Tech Info</strong></span></a></td></tr>
				<tr><td class="trow1"><a href="{$forumurl_q}filtertf_atcgal=71-73 Tutorials"><span><strong>71-73 Tutorials</strong></span></a></td></tr>
				<tr><td class="trow1"><a href="{$forumurl_q}filtertf_atcgal=Member Blogs"><span><strong>Member Blogs</strong></span></a></td></tr>
			</table>
			<br class="clear" />
			<table border="0" cellspacing="{$theme['borderwidth']}" cellpadding="{$theme['tablespace']}" class="tborder" style="clear: both;">
				<tr><td class="thead"><strong>Sort By</strong></td></tr>
				<tr><td class="trow1"><strong><a href="{$sorturl}&amp;sortby=subject&amp;order=asc">{$lang->thread}</a> {$orderarrow['subject']}</strong></td></tr>
				<tr><td class="trow1"><strong><a href="{$sorturl}&amp;sortby=starter&amp;order=asc">{$lang->author}</a> {$orderarrow['starter']}</strong></td></tr>
				<tr><td class="trow1"><strong><a href="{$sorturl}&amp;sortby=replies&amp;order=desc">{$lang->replies}</a> {$orderarrow['replies']}</strong></td></tr>
				<tr><td class="trow1"><strong><a href="{$sorturl}&amp;sortby=views&amp;order=desc">{$lang->views}</a> {$orderarrow['views']}</strong></td></tr>
				<tr><td class="trow1"><strong><a href="{$sorturl}&amp;sortby=lastpost&amp;order=desc">{$lang->lastpost}</a> {$orderarrow['lastpost']}</strong></td></tr>
				{$ratingcol}
			</table>
		</td>
		<td valign="top" colspan="{$colspan}">
			{$threads}{$nullthreads}
			<div class="float_left" style="margin: -15px 0px 15px 0px;">
				{$multipage}
			</div>
			<br class="clear" />
		</td>
		<td valign="top" colspan="{$colspan}" width="200px">
			<table border="0" cellspacing="{$theme['borderwidth']}" cellpadding="{$theme['tablespace']}" class="tborder" style="clear: both;">
				<tr><td class="thead"><strong>Article Legend</strong></td></tr>
				<tr><td class="trow1"><span class="thread_legend"><img src="{$theme['imgdir']}/newfolder.gif" alt="{$lang->new_thread}" title="{$lang->new_thread}" /> {$lang->new_thread}</span></td></tr>
				<tr><td class="trow1"><span class="thread_legend"><img src="{$theme['imgdir']}/newhotfolder.gif" alt="{$lang->new_hot_thread}" title="{$lang->new_hot_thread}" /> {$lang->new_hot_thread}</span></td></tr>
				<tr><td class="trow1"><span class="thread_legend"><img src="{$theme['imgdir']}/hotfolder.gif" alt="{$lang->hot_thread}" title="{$lang->hot_thread}" /> {$lang->hot_thread}</span></td></tr>
				<tr><td class="trow1"><span class="thread_legend"><img src="{$theme['imgdir']}/folder.gif" alt="{$lang->no_new_thread}" title="{$lang->no_new_thread}" /> {$lang->no_new_thread}</span></td></tr>
				<tr><td class="trow1"><span class="thread_legend"><img src="{$theme['imgdir']}/dot_folder.gif" alt="{$lang->posts_by_you}" title="{$lang->posts_by_you}" /> {$lang->posts_by_you}</span></td></tr>
				<tr><td class="trow1"><span class="thread_legend"><img src="{$theme['imgdir']}/lockfolder.gif" alt="{$lang->locked_thread}" title="{$lang->locked_thread}" /> {$lang->locked_thread}</span></td></tr>
			</table>
			<br class="clear" />
			<table border="0" cellspacing="{$theme['borderwidth']}" cellpadding="{$theme['tablespace']}" class="tborder" style="clear: both;">
				<tr><td class="thead"><strong>Article Tools</strong></td></tr>
				<tr><td class="trow1"><strong><a href="misc.php?action=markread&amp;fid={$fid}">{$lang->markforum_read}</a></strong></td></tr>
				<tr><td class="trow1"><strong><a href="usercp2.php?action={$add_remove_subscription}subscription&amp;type=forum&amp;fid={$fid}&amp;my_post_key={$mybb->post_code}">{$add_remove_subscription_text}</a>{$clearstoredpass}</strong></td></tr>
			</table>
		</td>
	</tr>
</table>
<br class="clear" />
<table border="0" cellspacing="{$theme['borderwidth']}" cellpadding="{$theme['tablespace']}" class="tborder" style="clear: both;">
	<tr>
		<td class="tcat">
			<div class="float_left">
			<form action="forumdisplay.php" method="get">
				<input type="hidden" name="fid" value="{$fid}" />
				<select name="sortby">
					<option value="subject" {$sortsel['subject']}>{$lang->sort_by_subject}</option>
					<option value="lastpost" {$sortsel['lastpost']}>{$lang->sort_by_lastpost}</option>
					<option value="starter" {$sortsel['starter']}>{$lang->sort_by_starter}</option>
					<option value="started" {$sortsel['started']}>{$lang->sort_by_started}</option>
					{$ratingsort}
					<option value="replies" {$sortsel['replies']}>{$lang->sort_by_replies}</option>
					<option value="views" {$sortsel['views']}>{$lang->sort_by_views}</option>
				</select>
				<select name="order">
					<option value="asc" {$ordersel['asc']}>{$lang->sort_order_asc}</option>
					<option value="desc" {$ordersel['desc']}>{$lang->sort_order_desc}</option>
				</select>
				<select name="datecut">
					<option value="1" {$datecutsel['1']}>{$lang->datelimit_1day}</option>
					<option value="5" {$datecutsel['5']}>{$lang->datelimit_5days}</option>
					<option value="10" {$datecutsel['10']}>{$lang->datelimit_10days}</option>
					<option value="20" {$datecutsel['20']}>{$lang->datelimit_20days}</option>
					<option value="50" {$datecutsel['50']}>{$lang->datelimit_50days}</option>
					<option value="75" {$datecutsel['75']}>{$lang->datelimit_75days}</option>
					<option value="100" {$datecutsel['100']}>{$lang->datelimit_100days}</option>
					<option value="365" {$datecutsel['365']}>{$lang->datelimit_lastyear}</option>
					<option value="9999" {$datecutsel['9999']}>{$lang->datelimit_beginning}</option>
				</select>
				{$gobutton}
			</form>
			</div>
			<div class="float_right">
				{$forumjump}
			</div>		
		</td>
		{$inlinemodcol}
	</tr>
	<tr>
		<td class="tfoot" align="center" colspan="{$colspan}">
			<strong><a href="http://mybbhacks.zingaburga.com" target="_blank">XThreads</a> Coded By: <a href="http://mybbhacks.zingaburga.com" target="_blank">ZiNgA BuRgA - MyBB Hacks</a></strong>
		</td>
	</tr>
</table>
<br class="clear" />
<div class="float_right" style="text-align: right;">
	{$inlinemod}
</div>
<br style="clear: both" />
{$inline_edit_js}


[Image: gallery_2_628_39582.jpg]
(This post was last modified: 12-23-2010 04:55 AM by RocketFoot.)
12-23-2010 04:46 AM
Find all posts by this user Quote this message in a reply
RateU Offline
Administrator
*******
Posts: 2,350
Joined: Mar 2010
Post: #126
RE: More side boxes for Article Gallery
I'm sorry. I've merged the threads.
I hope you don't mind Smile

For the column, try this:

HTML Code
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
<table border="0" cellspacing="{$theme['borderwidth']}" cellpadding="{$theme['tablespace']}" class="tborder" style="clear: both;">
	<tr>
		<td class="thead" colspan="{$colspan}" align="center">
			<strong>{$foruminfo['name']}</strong>
		</td>
	</tr>
</table>
<br class="clear" />
<div class="float_left">
	<a href="http://www.7173mustangs.com/newthread.php?fid=33"><img src="http://www.7173mustangs.com/images/newthread.png"></a>
</div>
<div class="float_right">
	{$searchforum}
</div>
<table border="0" cellspacing="{$theme['borderwidth']}" cellpadding="{$theme['tablespace']}" style="clear: both; width: 100%; background: #;">
	<tr>
		<td valign="top" width="225" colspan="{$colspan}">
			<table border="0" cellspacing="{$theme['borderwidth']}" cellpadding="{$theme['tablespace']}" class="tborder" style="clear: both;">
				<tr><td class="thead"><strong>Categories</strong></td></tr>
				<tr><td class="trow1"><a href="{$forumurl_q}filtertf_atcgal=71-73 General Info"><span><strong>71-73 General Info</strong></span></a></td></tr>
				<tr><td class="trow1"><a href="{$forumurl_q}filtertf_atcgal=71-73 Tech Info"><span><strong>71-73 Tech Info</strong></span></a></td></tr>
				<tr><td class="trow1"><a href="{$forumurl_q}filtertf_atcgal=71-73 Tutorials"><span><strong>71-73 Tutorials</strong></span></a></td></tr>
				<tr><td class="trow1"><a href="{$forumurl_q}filtertf_atcgal=Member Blogs"><span><strong>Member Blogs</strong></span></a></td></tr>
			</table>
			<br class="clear" />
			<table border="0" cellspacing="{$theme['borderwidth']}" cellpadding="{$theme['tablespace']}" class="tborder" style="clear: both;">
				<tr><td class="thead"><strong>Sort By</strong></td></tr>
				<tr><td class="trow1"><strong><a href="{$sorturl}&amp;sortby=subject&amp;order=asc">{$lang->thread}</a> {$orderarrow['subject']}</strong></td></tr>
				<tr><td class="trow1"><strong><a href="{$sorturl}&amp;sortby=starter&amp;order=asc">{$lang->author}</a> {$orderarrow['starter']}</strong></td></tr>
				<tr><td class="trow1"><strong><a href="{$sorturl}&amp;sortby=replies&amp;order=desc">{$lang->replies}</a> {$orderarrow['replies']}</strong></td></tr>
				<tr><td class="trow1"><strong><a href="{$sorturl}&amp;sortby=views&amp;order=desc">{$lang->views}</a> {$orderarrow['views']}</strong></td></tr>
				<tr><td class="trow1"><strong><a href="{$sorturl}&amp;sortby=lastpost&amp;order=desc">{$lang->lastpost}</a> {$orderarrow['lastpost']}</strong></td></tr>
				{$ratingcol}
			</table>
			<br class="clear" />
			<table border="0" cellspacing="{$theme['borderwidth']}" cellpadding="{$theme['tablespace']}" class="tborder" style="clear: both;">
				<tr><td class="thead"><strong>Article Legend</strong></td></tr>
				<tr><td class="trow1"><span class="thread_legend"><img src="{$theme['imgdir']}/newfolder.gif" alt="{$lang->new_thread}" title="{$lang->new_thread}" /> {$lang->new_thread}</span></td></tr>
				<tr><td class="trow1"><span class="thread_legend"><img src="{$theme['imgdir']}/newhotfolder.gif" alt="{$lang->new_hot_thread}" title="{$lang->new_hot_thread}" /> {$lang->new_hot_thread}</span></td></tr>
				<tr><td class="trow1"><span class="thread_legend"><img src="{$theme['imgdir']}/hotfolder.gif" alt="{$lang->hot_thread}" title="{$lang->hot_thread}" /> {$lang->hot_thread}</span></td></tr>
				<tr><td class="trow1"><span class="thread_legend"><img src="{$theme['imgdir']}/folder.gif" alt="{$lang->no_new_thread}" title="{$lang->no_new_thread}" /> {$lang->no_new_thread}</span></td></tr>
				<tr><td class="trow1"><span class="thread_legend"><img src="{$theme['imgdir']}/dot_folder.gif" alt="{$lang->posts_by_you}" title="{$lang->posts_by_you}" /> {$lang->posts_by_you}</span></td></tr>
				<tr><td class="trow1"><span class="thread_legend"><img src="{$theme['imgdir']}/lockfolder.gif" alt="{$lang->locked_thread}" title="{$lang->locked_thread}" /> {$lang->locked_thread}</span></td></tr>
			</table>
			<br class="clear" />
			<table border="0" cellspacing="{$theme['borderwidth']}" cellpadding="{$theme['tablespace']}" class="tborder" style="clear: both;">
				<tr><td class="thead"><strong>Article Tools</strong></td></tr>
				<tr><td class="trow1"><strong><a href="misc.php?action=markread&amp;fid={$fid}">{$lang->markforum_read}</a></strong></td></tr>
				<tr><td class="trow1"><strong><a href="usercp2.php?action={$add_remove_subscription}subscription&amp;type=forum&amp;fid={$fid}&amp;my_post_key={$mybb->post_code}">{$add_remove_subscription_text}</a>{$clearstoredpass}</strong></td></tr>
			</table>
		</td>
		<td valign="top" colspan="{$colspan}">
			{$threads}{$nullthreads}
			<div class="float_left" style="margin: -15px 0px 15px 0px;">
				{$multipage}
			</div>
			<br class="clear" />
		</td>
	</tr>
</table>
<br class="clear" />
<table border="0" cellspacing="{$theme['borderwidth']}" cellpadding="{$theme['tablespace']}" class="tborder" style="clear: both;">
	<tr>
		<td class="tcat">
			<div class="float_left">
			<form action="forumdisplay.php" method="get">
				<input type="hidden" name="fid" value="{$fid}" />
				<select name="sortby">
					<option value="subject" {$sortsel['subject']}>{$lang->sort_by_subject}</option>
					<option value="lastpost" {$sortsel['lastpost']}>{$lang->sort_by_lastpost}</option>
					<option value="starter" {$sortsel['starter']}>{$lang->sort_by_starter}</option>
					<option value="started" {$sortsel['started']}>{$lang->sort_by_started}</option>
					{$ratingsort}
					<option value="replies" {$sortsel['replies']}>{$lang->sort_by_replies}</option>
					<option value="views" {$sortsel['views']}>{$lang->sort_by_views}</option>
				</select>
				<select name="order">
					<option value="asc" {$ordersel['asc']}>{$lang->sort_order_asc}</option>
					<option value="desc" {$ordersel['desc']}>{$lang->sort_order_desc}</option>
				</select>
				<select name="datecut">
					<option value="1" {$datecutsel['1']}>{$lang->datelimit_1day}</option>
					<option value="5" {$datecutsel['5']}>{$lang->datelimit_5days}</option>
					<option value="10" {$datecutsel['10']}>{$lang->datelimit_10days}</option>
					<option value="20" {$datecutsel['20']}>{$lang->datelimit_20days}</option>
					<option value="50" {$datecutsel['50']}>{$lang->datelimit_50days}</option>
					<option value="75" {$datecutsel['75']}>{$lang->datelimit_75days}</option>
					<option value="100" {$datecutsel['100']}>{$lang->datelimit_100days}</option>
					<option value="365" {$datecutsel['365']}>{$lang->datelimit_lastyear}</option>
					<option value="9999" {$datecutsel['9999']}>{$lang->datelimit_beginning}</option>
				</select>
				{$gobutton}
			</form>
			</div>
			<div class="float_right">
				{$forumjump}
			</div>		
		</td>
		{$inlinemodcol}
	</tr>
	<tr>
		<td class="tfoot" align="center" colspan="{$colspan}">
			<strong><a href="http://mybbhacks.zingaburga.com" target="_blank">XThreads</a> Coded By: <a href="http://mybbhacks.zingaburga.com" target="_blank">ZiNgA BuRgA - MyBB Hacks</a></strong>
		</td>
	</tr>
</table>
<br class="clear" />
<div class="float_right" style="text-align: right;">
	{$inlinemod}
</div>
<br style="clear: both" />
{$inline_edit_js}


(This post was last modified: 12-23-2010 05:40 AM by RateU.)
12-23-2010 05:34 AM
Find all posts by this user Quote this message in a reply
RocketFoot Offline
Senior Member
****
Posts: 338
Joined: Jul 2010
Post: #127
RE: More side boxes for Article Gallery
(12-23-2010 05:34 AM)RateU Wrote:  I'm sorry. I've merged the threads.
I hope you don't mind Smile

For the column, try this:

HTML Code
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
<table border="0" cellspacing="{$theme['borderwidth']}" cellpadding="{$theme['tablespace']}" class="tborder" style="clear: both;">
	<tr>
		<td class="thead" colspan="{$colspan}" align="center">
			<strong>{$foruminfo['name']}</strong>
		</td>
	</tr>
</table>
<br class="clear" />
<div class="float_left">
	<a href="http://www.7173mustangs.com/newthread.php?fid=33"><img src="http://www.7173mustangs.com/images/newthread.png"></a>
</div>
<div class="float_right">
	{$searchforum}
</div>
<table border="0" cellspacing="{$theme['borderwidth']}" cellpadding="{$theme['tablespace']}" style="clear: both; width: 100%; background: #;">
	<tr>
		<td valign="top" width="225" colspan="{$colspan}">
			<table border="0" cellspacing="{$theme['borderwidth']}" cellpadding="{$theme['tablespace']}" class="tborder" style="clear: both;">
				<tr><td class="thead"><strong>Categories</strong></td></tr>
				<tr><td class="trow1"><a href="{$forumurl_q}filtertf_atcgal=71-73 General Info"><span><strong>71-73 General Info</strong></span></a></td></tr>
				<tr><td class="trow1"><a href="{$forumurl_q}filtertf_atcgal=71-73 Tech Info"><span><strong>71-73 Tech Info</strong></span></a></td></tr>
				<tr><td class="trow1"><a href="{$forumurl_q}filtertf_atcgal=71-73 Tutorials"><span><strong>71-73 Tutorials</strong></span></a></td></tr>
				<tr><td class="trow1"><a href="{$forumurl_q}filtertf_atcgal=Member Blogs"><span><strong>Member Blogs</strong></span></a></td></tr>
			</table>
			<br class="clear" />
			<table border="0" cellspacing="{$theme['borderwidth']}" cellpadding="{$theme['tablespace']}" class="tborder" style="clear: both;">
				<tr><td class="thead"><strong>Sort By</strong></td></tr>
				<tr><td class="trow1"><strong><a href="{$sorturl}&amp;sortby=subject&amp;order=asc">{$lang->thread}</a> {$orderarrow['subject']}</strong></td></tr>
				<tr><td class="trow1"><strong><a href="{$sorturl}&amp;sortby=starter&amp;order=asc">{$lang->author}</a> {$orderarrow['starter']}</strong></td></tr>
				<tr><td class="trow1"><strong><a href="{$sorturl}&amp;sortby=replies&amp;order=desc">{$lang->replies}</a> {$orderarrow['replies']}</strong></td></tr>
				<tr><td class="trow1"><strong><a href="{$sorturl}&amp;sortby=views&amp;order=desc">{$lang->views}</a> {$orderarrow['views']}</strong></td></tr>
				<tr><td class="trow1"><strong><a href="{$sorturl}&amp;sortby=lastpost&amp;order=desc">{$lang->lastpost}</a> {$orderarrow['lastpost']}</strong></td></tr>
				{$ratingcol}
			</table>
			<br class="clear" />
			<table border="0" cellspacing="{$theme['borderwidth']}" cellpadding="{$theme['tablespace']}" class="tborder" style="clear: both;">
				<tr><td class="thead"><strong>Article Legend</strong></td></tr>
				<tr><td class="trow1"><span class="thread_legend"><img src="{$theme['imgdir']}/newfolder.gif" alt="{$lang->new_thread}" title="{$lang->new_thread}" /> {$lang->new_thread}</span></td></tr>
				<tr><td class="trow1"><span class="thread_legend"><img src="{$theme['imgdir']}/newhotfolder.gif" alt="{$lang->new_hot_thread}" title="{$lang->new_hot_thread}" /> {$lang->new_hot_thread}</span></td></tr>
				<tr><td class="trow1"><span class="thread_legend"><img src="{$theme['imgdir']}/hotfolder.gif" alt="{$lang->hot_thread}" title="{$lang->hot_thread}" /> {$lang->hot_thread}</span></td></tr>
				<tr><td class="trow1"><span class="thread_legend"><img src="{$theme['imgdir']}/folder.gif" alt="{$lang->no_new_thread}" title="{$lang->no_new_thread}" /> {$lang->no_new_thread}</span></td></tr>
				<tr><td class="trow1"><span class="thread_legend"><img src="{$theme['imgdir']}/dot_folder.gif" alt="{$lang->posts_by_you}" title="{$lang->posts_by_you}" /> {$lang->posts_by_you}</span></td></tr>
				<tr><td class="trow1"><span class="thread_legend"><img src="{$theme['imgdir']}/lockfolder.gif" alt="{$lang->locked_thread}" title="{$lang->locked_thread}" /> {$lang->locked_thread}</span></td></tr>
			</table>
			<br class="clear" />
			<table border="0" cellspacing="{$theme['borderwidth']}" cellpadding="{$theme['tablespace']}" class="tborder" style="clear: both;">
				<tr><td class="thead"><strong>Article Tools</strong></td></tr>
				<tr><td class="trow1"><strong><a href="misc.php?action=markread&amp;fid={$fid}">{$lang->markforum_read}</a></strong></td></tr>
				<tr><td class="trow1"><strong><a href="usercp2.php?action={$add_remove_subscription}subscription&amp;type=forum&amp;fid={$fid}&amp;my_post_key={$mybb->post_code}">{$add_remove_subscription_text}</a>{$clearstoredpass}</strong></td></tr>
			</table>
		</td>
		<td valign="top" colspan="{$colspan}">
			{$threads}{$nullthreads}
			<div class="float_left" style="margin: -15px 0px 15px 0px;">
				{$multipage}
			</div>
			<br class="clear" />
		</td>
	</tr>
</table>
<br class="clear" />
<table border="0" cellspacing="{$theme['borderwidth']}" cellpadding="{$theme['tablespace']}" class="tborder" style="clear: both;">
	<tr>
		<td class="tcat">
			<div class="float_left">
			<form action="forumdisplay.php" method="get">
				<input type="hidden" name="fid" value="{$fid}" />
				<select name="sortby">
					<option value="subject" {$sortsel['subject']}>{$lang->sort_by_subject}</option>
					<option value="lastpost" {$sortsel['lastpost']}>{$lang->sort_by_lastpost}</option>
					<option value="starter" {$sortsel['starter']}>{$lang->sort_by_starter}</option>
					<option value="started" {$sortsel['started']}>{$lang->sort_by_started}</option>
					{$ratingsort}
					<option value="replies" {$sortsel['replies']}>{$lang->sort_by_replies}</option>
					<option value="views" {$sortsel['views']}>{$lang->sort_by_views}</option>
				</select>
				<select name="order">
					<option value="asc" {$ordersel['asc']}>{$lang->sort_order_asc}</option>
					<option value="desc" {$ordersel['desc']}>{$lang->sort_order_desc}</option>
				</select>
				<select name="datecut">
					<option value="1" {$datecutsel['1']}>{$lang->datelimit_1day}</option>
					<option value="5" {$datecutsel['5']}>{$lang->datelimit_5days}</option>
					<option value="10" {$datecutsel['10']}>{$lang->datelimit_10days}</option>
					<option value="20" {$datecutsel['20']}>{$lang->datelimit_20days}</option>
					<option value="50" {$datecutsel['50']}>{$lang->datelimit_50days}</option>
					<option value="75" {$datecutsel['75']}>{$lang->datelimit_75days}</option>
					<option value="100" {$datecutsel['100']}>{$lang->datelimit_100days}</option>
					<option value="365" {$datecutsel['365']}>{$lang->datelimit_lastyear}</option>
					<option value="9999" {$datecutsel['9999']}>{$lang->datelimit_beginning}</option>
				</select>
				{$gobutton}
			</form>
			</div>
			<div class="float_right">
				{$forumjump}
			</div>		
		</td>
		{$inlinemodcol}
	</tr>
	<tr>
		<td class="tfoot" align="center" colspan="{$colspan}">
			<strong><a href="http://mybbhacks.zingaburga.com" target="_blank">XThreads</a> Coded By: <a href="http://mybbhacks.zingaburga.com" target="_blank">ZiNgA BuRgA - MyBB Hacks</a></strong>
		</td>
	</tr>
</table>
<br class="clear" />
<div class="float_right" style="text-align: right;">
	{$inlinemod}
</div>
<br style="clear: both" />
{$inline_edit_js}


Nice!  thank you!  that is exactly what I was hoping for!  I tried a few edits and mine looked like crap!  LOL!

http://www.7173mustangs.com/forumdisplay.php?fid=33

About disabling images in quotes, is there a way to do it per forum or is it global only?  I'd really like to only disable images in quotes just in the article forum.

[Image: gallery_2_628_39582.jpg]
(This post was last modified: 12-23-2010 06:59 AM by RocketFoot.)
12-23-2010 06:58 AM
Find all posts by this user Quote this message in a reply
RateU Offline
Administrator
*******
Posts: 2,350
Joined: Mar 2010
Post: #128
RE: Article Gallery
Forgot to change this part:
At line #10:

HTML Code
<a href="http://www.7173mustangs.com/newthread.php?fid=33"><img src="http://www.7173mustangs.com/images/newthread.png"></a>


Replace with:

HTML Code
<a href="http://www.7173mustangs.com/newthread.php?fid=33"><img src="http://www.7173mustangs.com/images/newthread.png" alt="Post Article" title="Post Article" /></a>

Just to make it as it should be Biggrin

(12-23-2010 06:58 AM)RocketFoot Wrote:  About disabling images in quotes, is there a way to do it per forum or is it global only?  I'd really like to only disable images in quotes just in the article forum.

Not actually disabling it, but maybe we can hide it.

Try this:

Open up atcgal_postbit template. Find (around line #17):

HTML Code
<div class="post_body" id="pid_{$post['pid']}">


Add an additional class there, something like this:

HTML Code
<div class="post_body atcgal_post_body" id="pid_{$post['pid']}">


Then, add this CSS class in you themes' global.css:

Code:
.atcgal_post_body blockquote img {
	display: none;
}


Clear your cache.


12-23-2010 07:24 AM
Find all posts by this user Quote this message in a reply
RocketFoot Offline
Senior Member
****
Posts: 338
Joined: Jul 2010
Post: #129
RE: Article Gallery
That seems to have done the trick!!

Biggrin

Thanks once again for the help!

[Image: gallery_2_628_39582.jpg]
(This post was last modified: 12-23-2010 09:39 PM by RocketFoot.)
12-23-2010 09:36 PM
Find all posts by this user Quote this message in a reply
RocketFoot Offline
Senior Member
****
Posts: 338
Joined: Jul 2010
Post: #130
RE: Article Gallery
Could the CSS I added actually affect all of my forums?  I noticed that no images are being shown in quotes in all of my forums.  I kind of like it that way!  Takes up less room with quotes, but I thought i saw a setting somewhere to turn images on and off inside quotes?  Just curious...

[Image: gallery_2_628_39582.jpg]
12-30-2010 03:32 AM
Find all posts by this user Quote this message in a reply

« Next Oldest | Next Newest »

 Standard Tools
Forum Jump: