MyBB Support

Aoki's MyBB Helpdesk

Submitted by Aoki, , Thread ID: 10700

Thread Closed

RE: Aoki's MyBB Helpdesk

Senpai
?
Level:
0
Reputation:
321
Posts:
9.01K
Likes:
923
Credits:
328
02-10-2015, 11:27 PM
#11
02-10-2015, 11:22 PM
Faded Wrote:
30-09-2015, 01:02 AM
Asa Wrote:
Here's one bigger than most will probably ask.
But how would I go about aligning the postbit as the postbit is aligned on Nulled?

Like here's the trash I currently have:
[Image: vvsobF3.png]


And I want something like this
(The red boxes are only there to show you what I want in mine, which is the spaces between/the alignment)
[Image: tMaAbVd.png]


Though I still want to keep it in this order:
-Posts
-Join Date
-Credits
-Reputation
-Warning level

Also, I am stumped and cannot find the value to use for the credits. I use newpoints. I was using "{$post['newpoints_postbit']}", but that includes the word "Credits" and then the amount. But I'm searching for the code to show just the amount of credits a user has.(Number).

This might be hard to understand, so if you have any questions just ask.

A bit late, but here:
http://community.mybb.com/thread-156998.html

Not sure about the warning level being at the bottom though.

Also for the credits part, I think (NOT SURE AT ALL) that you need a core edit, as in that's more work than just editing templates.
---

sry aoki I suck, but I try

I'll try this. Thanks for the help!
Lol Aoki got people answering his desk for him :')
Aisaka
Anbu is cool I guess.
My padawan: Asa
[Image: LVRtdlA.png]
1

RE: Aoki's MyBB Helpdesk

Hurt Locker
Member
Level:
0
Reputation:
0
Posts:
106
Likes:
4
Credits:
0
02-10-2015, 11:58 PM
#12
Can you tell me whats the name of the theme from nbb?

RE: Aoki's MyBB Helpdesk

Faded
Legend
Level:
21
Reputation:
215
Posts:
10.2K
Likes:
1.12K
Credits:
15K
03-10-2015, 12:00 AM
#13
02-10-2015, 11:58 PM
HurtLocker Wrote:
Can you tell me whats the name of the theme from nbb?

The theme this forum is running is custom made by him.
[Image: InZ3hGx.png]

RE: Aoki's MyBB Helpdesk

A
User Icon
\(_o)/
Level:
0
Reputation:
206
Posts:
5.52K
Likes:
1.24K
Credits:
50.7K
03-10-2015, 01:50 AM
#14
A question from an shy user on here:
Oh i was going to ask how can i add the borders like this in my theme postbit please?

I can't figure out sorry :Sad:


http://prnt.sc/8mzfrz

RE: Aoki's MyBB Helpdesk

Faded
Legend
Level:
21
Reputation:
215
Posts:
10.2K
Likes:
1.12K
Credits:
15K
03-10-2015, 01:53 AM
#15
03-10-2015, 01:50 AM
A Wrote:
A question from an shy user on here:
Oh i was going to ask how can i add the borders like this in my theme postbit please?

I can't figure out sorry :Sad:


http://prnt.sc/8mzfrz

Postbit part:
border-right: 1px solid #151515;

Post itself part:
border-left: 1px solid #303030;

The concept of it anyway, repeat on other parts.
[Image: InZ3hGx.png]

RE: Aoki's MyBB Helpdesk

A
User Icon
\(_o)/
Level:
0
Reputation:
206
Posts:
5.52K
Likes:
1.24K
Credits:
50.7K
03-10-2015, 02:01 AM
#16
03-10-2015, 01:53 AM
Faded Wrote:
03-10-2015, 01:50 AM
A Wrote:
A question from an shy user on here:
Oh i was going to ask how can i add the borders like this in my theme postbit please?

I can't figure out sorry :Sad:


http://prnt.sc/8mzfrz

Postbit part:
border-right: 1px solid #151515;

Post itself part:
border-left: 1px solid #303030;

The concept of it anyway, repeat on other parts.

Will copy and paste it to him, thank you :D

RE: Aoki's MyBB Helpdesk

Hurt Locker
Member
Level:
0
Reputation:
0
Posts:
106
Likes:
4
Credits:
0
03-10-2015, 02:10 AM
#17
03-10-2015, 12:00 AM
Faded Wrote:
02-10-2015, 11:58 PM
HurtLocker Wrote:
Can you tell me whats the name of the theme from nbb?

The theme this forum is running is custom made by him.

okay, thanks for the answer.
so I have to continue searching for a good theme then :D

RE: Aoki's MyBB Helpdesk

AAA
Offline
Level:
0
Reputation:
73
Posts:
834
Likes:
110
Credits:
582
23-10-2015, 03:36 PM
This post was last modified: 23-10-2015, 03:39 PM by AAA
#18
So i have this shity color picker on my shity theme, now i know how to add div's, and id's to change colors
but no clue how zo add something like this ....

::-webkit-scrollbar-thumb, .thread_status.dot_newfolder::before



Code:
jQuery(document).ready(function($) {

$('.color-box').colpick({
  onChange:function(hsb,hex,rgb,el,bySetColor) {
$('.thead,.nav-options,.menu').css("background-color", "#"+hex);
$.cookie("mycookie", "#" + hex,{expires:365}); //set cookie with name "mycookie" and value that you have picked
  }
}).keyup(function(){
  $(this).colpickSetColor(this.value);
});


//Check if cookie exists
if (typeof $.cookie('mycookie') === 'undefined'){
//no cookie
} else {
//cookie is there, do something
$(".thead,.nav-options,.menu").css("backgroundColor", $.cookie('mycookie'));
}

});



TNX Aoki
[Image: XhhKTdF.png]

RE: Aoki's MyBB Helpdesk

Sozin
Nan Ihier Gelair Mordor
Divine
Level:
0
Reputation:
91
Posts:
2.33K
Likes:
375
Credits:
11K
23-10-2015, 03:59 PM
#19
23-10-2015, 03:36 PM
ScarlettJohansson Wrote:
So i have this shity color picker on my shity theme, now i know how to add div's, and id's to change colors
but no clue how zo add something like this ....

::-webkit-scrollbar-thumb, .thread_status.dot_newfolder::before



Code:
jQuery(document).ready(function($) {

$('.color-box').colpick({
  onChange:function(hsb,hex,rgb,el,bySetColor) {
$('.thead,.nav-options,.menu').css("background-color", "#"+hex);
$.cookie("mycookie", "#" + hex,{expires:365}); //set cookie with name "mycookie" and value that you have picked
  }
}).keyup(function(){
  $(this).colpickSetColor(this.value);
});


//Check if cookie exists
if (typeof $.cookie('mycookie') === 'undefined'){
//no cookie
} else {
//cookie is there, do something
$(".thead,.nav-options,.menu").css("backgroundColor", $.cookie('mycookie'));
}

});



TNX Aoki

Find:

Code:
$('.thead,.nav-options,.menu').css("background-color", "#"+hex);

Add below:
Code:
document.styleSheets[0].addRule( '.thread_status.dot_newfolder:before','background-color: #' + hex );
Do not let your difficulties fill you with anxiety, after all it is only in the darkest nights that stars shine more brightly. - Ali(a.s)

Developer( PHP, Python, C++, HTML+CSS, JS I am available for Hire. Message Me for details.

RE: Aoki's MyBB Helpdesk

Carpesir
3,4-Methylendioxy-N-methylamphetamin
Prime
Level:
0
Reputation:
87
Posts:
1.78K
Likes:
64
Credits:
18
23-10-2015, 04:19 PM
#20
  • Does it take a lot of work to create a usergroup?
  • Does it take a lot of work to make it visible for only 1 person?

Users browsing this thread: 1 Guest(s)