MyBB Community Forums

Full Version: postbit not aligned
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Pages: 1 2
What's the problem and what's your URL?
hello alan
my problem is the postbit area
as you can see in this screenshot http://prntscr.com/acbdf
NewPoints system is not aligned and on the 2nd post its not on the properly placed

site: http://www.ph.dotatalk.com/forum
Open newpoints_postbit template (under global templates) and remove <br /> tag and replace smalltext class (in <span> tag) with newpoints_postbit class and save it.
hello johnny S
I've manage to reduce the gap but the Gold is still in the middle

Screenshot: http://prntscr.com/agyfu

also the Post, Joined, Reputation, came pass the line in postbit area
Go to AdminCP -> templates and styles -> templates -> global templates .> newpoints_postbit template and remove <br /> tag and replace smalltext class (in <span> tag) with
 postbit_details block 
class and save it.
worked like a charm!

but how about this other problem
http://prntscr.com/ah5si
its still over the line
I wouldn't classified that as problem,this is due the fact that your forum avatars are huge (over 100 px) and that's why postbit buttons are not at the bottom.

Open global.css and find
.postbit_content { 
border-left: 1px solid #0C0F12;
margin-left: 180px;
min-height: 220px !important;
padding: 10px;
}

and set 320px as min height (instead of 220px).
perfect! awesome thank you!

How can I make this sidebar panel/option disabled or removed?
http://prntscr.com/ah9gp
and how can I set the Toggle Text and Links Colors
from the "Default White" one into the other option "grayish" permanently?
I want to use that one because I have manage it edit it, I couldnt edit the default white one.

thanks again
For sidebar panel take a look at this post (second part) http://community.mybb.com/thread-113298-...#pid869303 .


For setting dark text as default you should copy color property (and text shadow) from body.css to global.css

for example in body.css you have

body.dark .tborder {
	color: #4a5459;
	text-shadow: 0px 2px 3px #080A0D;
}

and in global.css

.tborder {
	width: 100%;
	margin: auto auto;
	border-radius:3px;
	border: 1px solid #0c0f12;
}

Now copy color and text-shadow property from body.css in global.css and you should get

.tborder {
	width: 100%;
	margin: auto auto;
	border-radius:3px;
	border: 1px solid #0c0f12;
	color: #4a5459;
	text-shadow: 0px 2px 3px #080A0D;
}

Do that for all classes defined in body.css (in style folder).
Pages: 1 2