[Technical Issue] Forum Breadcrumb

Blizzàrd1

Active member
Legendary
Joined
Sep 13, 2010
Messages
13,534
Kin
0💸
Kumi
0💴
Trait Points
0⚔️
Awards
The Forum Breadcrumb is made of two parts, one that overlays the other. The right one that has a minute error in the coding contains the following;
  • Avatar
  • Welcome, <member>
  • Notifications
  • Some links, etc.
The problem is that the background (div) of the right side part stretches way too over to the left covering some part of the breadcrumb if the links are long. And you wont be able to click on the link properly.

For example; You cannot navigate back by clicking on as highlighted with the orange box below;
You must be registered for see images

Because the following div spans over "Review Corner" text;
You must be registered for see images

Review corner is just an example, it won't work for any other longer navigation. Easy fix is to decrease the width of the following div;
Code:
[B]#toplinks[/B] {
[B]width:[/B] 250px; }
 
Last edited:

Drizzy

Legendary
Joined
Apr 15, 2011
Messages
13,954
Kin
10💸
Kumi
3💴
Trait Points
0⚔️
I didn't notice this until you highlighted it, thanks for pointing it out. It would be a problem in the areas with several sub-sections. A CSS edit to the width property from 473px to 270px should be able to fix the problem.
 
Last edited:

Blizzàrd1

Active member
Legendary
Joined
Sep 13, 2010
Messages
13,534
Kin
0💸
Kumi
0💴
Trait Points
0⚔️
Awards
I didn't notice this until you highlighted it, thanks for pointing it out. It would be a problem in the areas with several sub-sections. A CSS edit to the width CSS property from 473px to 270px should be able to fix the problem.
That is correct, 250 px should be the width and 23 px is auto given to the div, so with the total of 273px it should be fine. You can test it using inspector tool in chrome.
 

gamahiro

Active member
Supreme
Joined
Jul 8, 2010
Messages
32,579
Kin
0💸
Kumi
0💴
Trait Points
0⚔️
Awards
Has to be at least 350px to view all content. 250px cuts off float right topleftlinks.

Actually, it looks like 300px will work
 
Last edited:

Blizzàrd1

Active member
Legendary
Joined
Sep 13, 2010
Messages
13,534
Kin
0💸
Kumi
0💴
Trait Points
0⚔️
Awards
inline block for isuser makes it so you have to take into account for your longest accepted username
They should have something like a break if the username is freaking long. Otherwise it effects the usage of all other forum users who have decent usernames that easily fits in 350px. Lol
 

Blizzàrd1

Active member
Legendary
Joined
Sep 13, 2010
Messages
13,534
Kin
0💸
Kumi
0💴
Trait Points
0⚔️
Awards
It was just a quick hack V threw up. It isn't standard on vbulletin.
I see, explains the limitations. An easy fix for now would be changing the properties to fixed for the following code. That way, the welcome line won't bug anything else even if the username is longer. It will just display whatever is acceptable in that length allowing Breadcumb to be proper.
Code:
<li class="welcomelink">
 
Top