Prefix not alligning in navbar Issue Tools
issueid=30708 Sat 24th Oct '09 12:50pm
Senior Member
Prefix not alligning in navbar

Prexix not alligning in the navbar with the thread title
See attachment or http://www.vbulletin.com/forum/showt...ky-Prefix-Test
Issue Details
Project vBulletin
Category Styling
Status Confirmed
Priority 3
Affected Version 4.0.0 Beta 1
Fixed Version (none)
Users able to reproduce bug 2
Users unable to reproduce bug 0
Assigned Users (none)
Tags (none)

Sat 24th Oct '09 12:53pm
Senior Member
 
The attachment is giving an error. Can you please try attaching the attachment to this PT entry
Reply
Sat 24th Oct '09 12:53pm
Issue Changed by Lizard King
  • Status changed from Unconfirmed to Awaiting Feedback
Sat 24th Oct '09 1:20pm
Issue Changed by NolFito
  • Attachment example 3.jpg uploaded
Sat 24th Oct '09 1:22pm
Senior Member
 
Done :) thanks Lizard King
Reply
This petition for a change to Confirmed was accepted
Sat 24th Oct '09 1:47pm
Senior Member
 
It's the padding and border that is applied globally to any <span> element, so embedding a <span> within a <span> does bad things.

Code:
#breadcrumb .navbit > a, #breadcrumb .navbit span {
	display:block;
	padding:2px 4px;
	float:left;
	background-color:transparent;
	border:solid 1px rgb(255,255,255);
	-moz-border-radius:5px;
	-webkit-border-radius:5px;	
}
The fix?

HTML Code:
<span style="color: red;">prefix</span><span>Thread Title...</span>
instead of:

HTML Code:
<span><span style="color: red;">prefix</span>Thread Title...</span>
Sun 25th Oct '09 6:21am
Senior Member
 
Changing the CSS selector to
Code:
#breadcrumb .navbit > a, #breadcrumb .navbit > span {}
also seems to fix the issue.
Reply
Thu 5th Nov '09 1:04pm
Issue Changed by Wayne Luke
  • Status changed from Awaiting Feedback to Confirmed
  • Priority changed from 8 to 3
Today 4:44am
Senior Member
 
Can still reproduce in beta 4.
Reply
Reply