MyBB Community Forums

Full Version: [Updated] MyBB GoMobile questions?
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Is it possible to add smilies to the Mobile Version?

Also, is it possible to change the color of the mobile theme?

If so, how?
it is possible to change colors. it is through adjusting css. not sure about adding the smilies
You could add smilies by editing post templates. Also, edit global.css for colors.
Can someone help me out changing the background color of the forum names I highlighted?

[attachment=29131]

I've changed pretty much everything else.

I also have another question. How to I disable the avatar on the Mobile version. I tried this but it doesn't work:

.post_avatar {
	width: 20px;
	height: 20px; none;
The background for the forums can be found in .thread

Use this instead:
.post_avatar { display: none; }
disable post avatar
.post_avatar {
    display: none;
    height: 20px;
    width: 20px;
}

for background colour of categories, change used background colour for .thead in global.css
(present value is #23A0DA change it to your choice)
Thank you very much Jason. Smile

(2013-04-28, 07:47 PM).m. Wrote: [ -> ]disable post avatar
.post_avatar {
    display: none;
    height: 20px;
    width: 20px;
}

for background colour of categories, change used background colour for .thead in global.css
(present value is #23A0DA change it to your choice)

Thanks m.



How do I change the color of Forums that are "unread" (pictured below)?

[attachment=29134]

Also, is it possible to change the color of the "Post reply", "First post" and "Last post" buttons? If so, how?
css for color of forums is like below. change above color to your requirement
a.forum_on, a.forum_minion {
    color: #186F97;
}

for the buttons color or background color, change them for a.big_button in global.css (line 685)