MyBB Community Forums

Full Version: Revolution gaming [Dark theme] 1.8.7
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 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
(2015-03-18, 10:54 PM)VAPOR Wrote: [ -> ]Andrew, instead of using css images....I would like to add static .png images.

Which do I edit, global.css or revolution.css ? And which .button lines?

Thanks

Themes > revolution > global.css

Find these


.forum_status {
height: 50px;
width: 50px;
font-size: 30px;
text-align: center;
}

.forum_status i {
display: inline-block;
line-height: 50px;
}

.forum_on {
color: #3e3e3e;
}

.forum_off, .forum_offlock, .forum_offlink {
color: #333;
}

.forum_off i {
opacity: .4;
}

.forum_offlock i:before {
content: "\f05e";
}

.forum_offlink i:before {
content: "\f079";
}


Replace it with this



.forum_status {
	height: 30px;
	width: 30px;
	background: url(images/revolution/forum_icon_sprite.png) no-repeat 0 0;
	display: inline-block;
}

.forum_on {
	background-position: 0 0;
}

.forum_off {
	background-position: 0 -30px;
}

.forum_offlock {
	background-position: 0 -60px;
}

.forum_offlink {
	background-position: 0 -90px;
}




Templates > Revo > Forumbit Templates > forumbit_depth2_forum + forumbit_depth2_cat

Find this


<div class="forum_status forum_{$lightbulb['folder']} ajax_mark_read" title="{$lightbulb['altonoff']}" id="mark_read_{$forum['fid']}"><i class="fa fa-gamepad"></i></div>

Replace with


<span class="forum_status forum_{$lightbulb['folder']} ajax_mark_read" title="{$lightbulb['altonoff']}" id="mark_read_{$forum['fid']}"></span>

Where could i find the part to make the topnav position fixed so it would be fixed when you scroll the page?
(2015-03-19, 01:49 PM)tammer123 Wrote: [ -> ]Where could i find the part to make the topnav position fixed so it will move when you scroll the page?

Look for .menu in themes > revo > revolution.css
Thanks. Works perfect, but now the menu what had Log Out and other choices moved up a little, how could I fix that? Found a way to fix it. I needed to change the .topbar height.
Hi Andrew, I just want to start by saying thanks so much for a great theme. I have just moved from phpbb3 to mybb and I am curious how do I remove the your title / content here table from the right hand side and just have lastest posts there?

I have searched but had no luck.

Thanks for any help
Templates > Revolution > Index Page Templates > Index

Remove this


<table border="0" cellspacing="{$theme['borderwidth']}" cellpadding="{$theme['tablespace']}" class="tborder">
<tr>
<td class="thead">
<div class="float_left"><strong>Your title</strong></div> 
</td>
</tr>
<tr>
<td class="trow1">
Content here
</td>
</tr>
</table>
  
  <br />  


Thank you so so much Smile

You are a life saver
Another question about the Latest Threads. is there a way to make them scrolling. Like the latest threads would non-stop scroll in that table. Or that is not possible to make?
I'm hoping you can help me with an issue I'm having. I want to change in the Extras menu the Link Five to Unread Posts. I have added a plugin that allows this and it shows up on the Default theme but not yours.

I think this is the code they used

<a href="http://indeedcommunity.com/mybb/search.php?action=unreads">View Unread Posts</a>
Use this

<a href="http://indeedcommunity.com/mybb/search.php?action=unreads" class="popup_item">View Unread Posts</a>
Pages: 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