MyBB Community Forums

Full Version: Unlimited Theme
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Pages: 1 2 3 4 5 6 7 8
There is no limit on my noobness, I did that change for test purposes and I forgot to set width back.
Thank you so much anyway. I would report little things.
When I try to set horizontal post view, it not works. I set it in admin cp and user cp but nothing. Smile

And, theme is not finding showthread list icons: images/Unlimited/dot_newfolder.gif where they are? Sad
I also found this little issue in the post field.
[Image: Immagine.png]
free image upload

I'm trying also to set 2 subforums columns following this guide but it not works
http://community.mybb.com/thread-95023-post-694787.html
It not set more than 1 column and it show 2 list dots instead of 1...
(2014-07-28, 11:49 PM)Vanz Wrote: [ -> ]I love this theme,,,,

What are the #XXXXXX to change the color from BLUE to GREEN.
(To change the Theme from Blue ON Black, to Green on Black)

(2014-07-29, 01:26 AM)eNvy Wrote: [ -> ]You need to change a lot of CSS classes & id's to change from blue to green. I can't put all the classes and id's now, give me some time and tomorrow I promess you have all.

Just a friendly-reminder bump Cool
(2014-08-01, 06:05 AM)Vanz Wrote: [ -> ]
(2014-07-28, 11:49 PM)Vanz Wrote: [ -> ]I love this theme,,,,

What are the #XXXXXX to change the color from BLUE to GREEN.
(To change the Theme from Blue ON Black, to Green on Black)

(2014-07-29, 01:26 AM)eNvy Wrote: [ -> ]You need to change a lot of CSS classes & id's to change from blue to green. I can't put all the classes and id's now, give me some time and tomorrow I promess you have all.

Just a friendly-reminder bump Cool

I only put the blue ones, the rest it's only black things.

Global.css

Quote:a:link, a:visited
a:hover, a:active
.trow_selected td
.trow_sticky
.trow_announcement
.pagination .pagination_current

Unlimited.css

Quote:.breadcrumb
.breadcrumb .crust a.crumb, .breadcrumb .crust b.lastcrumb
.breadcrumb .crust .arrow
.breadcrumb .crust .arrow span
.breadcrumb .crust:hover a.crumb
.breadcrumb .crust:hover .arrow span
.buttons
.buttons:hover
.clickedbuttons
.clickedbuttons:hover
#forum #foro, #search #busqueda, #members #miembros, #calendar #calendario, #help #ayuda
#footer h3
.two a:link, .two a:visited
.two a:hover, .two a:active
.bigbutton
.bigbutton:hover
.bigbutton:active
.paginationtwo a:link, .paginationtwo a:visited
.paginationtwo a:hover

Also you have the color of the "Announcements" directly in the header template, here:

<table class="news">
<tr>
<td style="color: #007de7;" width="130"><i style="font-size: 14px;" class="fa fa-exclamation-circle fa-fw"></i>&nbsp;<span style="font-weight: 700;">Announcements:</span></td>
<td width="854">
<ul>
    <li class="quotes">This is a simple test for news with CSS and jQuery.</li>
    <li class="quotes">Please, ignore this message.</li>
</ul>
</td>
</tr>
</table>

If you see ( color: #007de7; ) it's the color of the icon and the Announcements word.
I noticed a problem when I was testing and here's a fix.

This is specifically for anybody who uses the modnotice plugin and seem to be noticing that (for mods/admins) the edit button is showing wrong or not showing at all, do the following to fix it;

Go into the template set for this theme and add click Add Template

Name it postbit_moderator_edit

Then paste the following

<a href="editpost.php?pid={$post['pid']}" id="edit_post_{$post['pid']}"><span class="pbbutton"><i style="font-size: 14px;" class="fa fa-pencil fa-fw"></i> Edit</span></a>
<div id="edit_post_{$post['pid']}_popup" class="popup_menu" style="display: none;">
<div class="popup_item_container"><a href="javascript:;" onclick="Thread.quickEdit({$post['pid']});" class="popup_item">{$lang->postbit_quick_edit}</a></div>
<div class="popup_item_container"><a href="editpost.php?pid={$post['pid']}" class="popup_item">{$lang->postbit_full_edit}</a></div>
<div class="popup_item_container"><a href="modnotice.php?pid={$post['pid']}" class="popup_item">{$lang->postbit_post_moderate}</a></div></div>
<script type="text/javascript">
// <!--
	if(use_xmlhttprequest == "1")
	{
		new PopupMenu("edit_post_{$post['pid']}");
	}
// -->
</script>
(2014-07-31, 02:04 PM)Løque Wrote: [ -> ]There is no limit on my noobness, I did that change for test purposes and I forgot to set width back.
Thank you so much anyway. I would report little things.
When I try to set horizontal post view, it not works. I set it in admin cp and user cp but nothing. Smile

And, theme is not finding showthread list icons: images/Unlimited/dot_newfolder.gif where they are? Sad
I also found this little issue in the post field.
[Image: Immagine.png]
free image upload

I'm trying also to set 2 subforums columns following this guide but it not works
http://community.mybb.com/thread-95023-post-694787.html
It not set more than 1 column and it show 2 list dots instead of 1...

I removed the horizontal post, it's the same of the classic view.

Removed also the showthread list icons, if you want to show them again simply open forumdisplay_threadlist template, and search this:

<div class="float_left" style="text-align: left;">
	{$searchforum}
</div>

Replace only that div with this:

<div class="float_left" style="text-align: left;">
	{$searchforum}
	<br style="clear: both" />
	<div class="float_left">
		<dl class="thread_legend smalltext">
			<dd><img src="{$theme['imgdir']}/newfolder.gif" alt="{$lang->new_thread}" title="{$lang->new_thread}" /> {$lang->new_thread}</dd>
			<dd><img src="{$theme['imgdir']}/newhotfolder.gif" alt="{$lang->new_hot_thread}" title="{$lang->new_hot_thread}" /> {$lang->new_hot_thread}</dd>
			<dd><img src="{$theme['imgdir']}/hotfolder.gif" alt="{$lang->hot_thread}" title="{$lang->hot_thread}" /> {$lang->hot_thread}</dd>
		</dl>
	</div>

	<div class="float_left">
		<dl class="thread_legend smalltext">
			<dd><img src="{$theme['imgdir']}/folder.gif" alt="{$lang->no_new_thread}" title="{$lang->no_new_thread}" /> {$lang->no_new_thread}</dd>
			<dd><img src="{$theme['imgdir']}/dot_folder.gif" alt="{$lang->posts_by_you}" title="{$lang->posts_by_you}" /> {$lang->posts_by_you}</dd>
			<dd><img src="{$theme['imgdir']}/lockfolder.gif" alt="{$lang->locked_thread}" title="{$lang->locked_thread}" /> {$lang->locked_thread}</dd>
		</dl>
	</div>
</div>

The problem with the postfield it's a problem with MyBB editor, here you have 2 different tutorials to fix that:

http://community.mybb.com/thread-156799.html
http://community.mybb.com/thread-75337.html

And the tutorial for the subforums in columns... check again the tut. because I test that now and works 100% xD, I'm sure you do something wrong or forgot to add the css in the global.css...

Greetings!
I'm trying to get threads that have been read to not display in bold but alas are having no luck.

I tried in global;

.subject_new {
font-weight: bold;
}

.subject_old {
font-weight: normal;
}


but that did nothing, got a little confused, still appends <strong> tags

edit, I also tried to keep the 'recent topics' bar working alongside labrocca's tabbed menu plugin but for some reason it just wasn't having it
(2014-08-01, 09:35 PM)p00lz Wrote: [ -> ]I'm trying to get threads that have been read to not display in bold but alas are having no luck.

I tried in global;

.subject_new {
font-weight: bold;
}

.subject_old {
font-weight: normal;
}


but that did nothing, got a little confused, still appends <strong> tags

edit, I also tried to keep the 'recent topics' bar working alongside labrocca's tabbed menu plugin but for some reason it just wasn't having it

Try this:

forumdisplay_thread template

search this and remove the <strong></strong> tag

<span>{$prefix} {$gotounread}{$thread['threadprefix']}<a href="{$thread['threadlink']}" class="{$inline_edit_class} {$new_class}" id="tid_{$inline_edit_tid}"><strong>{$thread['subject']}</strong></a></span>

For the tabbed menu plugin, again, I do not give support for plugins, sorry.
Absolutely stellar, sorted the little dink i was having.

One thing that irking me is I can't seem to get the end of the breadcrumb to just not appear, it's white no matter what i try to set in unlimited.css

[Image: 0Qf3Ljj.png]

I'm just trying to get rid of the white entirely so the it ends on the final arrow.

I only intended to tinker a bit with this to get used to tweaking/fixing themes in my sites main theme, but i'm getting tempted to push entirely to this one after I iron out a few more color-scheme things.

edit; disregard, for some reason it was pulling it from the parent theme, stupid sexy flanders.
The theme doesn't seem to show locked topics. Any fix for that?

EDIT: And when I click page 2 of a forum it says all threads are selected but doesn't display any.
It cannot be a plugin issue because on other themes it is fine.
(2014-08-02, 02:55 PM)nth Wrote: [ -> ]The theme doesn't seem to show locked topics. Any fix for that?

EDIT: And when I click page 2 of a forum it says all threads are selected but doesn't display any.
It cannot be a plugin issue because on other themes it is fine.

I can see locked topics...

Heres an img.:

[Image: TjMuXjL.png]

The threads selecteds works in that way, isn't something added to my theme, it's a thing default of MyBB, and even in the MyBB default template, when you go to another page, the message on the top doesn't show.
Pages: 1 2 3 4 5 6 7 8