inherit
187320
0
Jun 5, 2024 7:59:58 GMT -8
Don't Eat This
71
December 2012
dokupro
|
Post by Don't Eat This on Jan 28, 2021 11:42:53 GMT -8
Forum URL: tdera.boards.net/As you can see in the picture above, the mini profile is wonky with it's contents. I know I edited it at some point but when I went to return to default it was stuck like this. I can not, for the life of me, figure out where I went wrong. As for the navigation tree, the text is a little lower on the tree when it should be more centered. I don't remember ever editing that and I can't figure out how to fix that either.
|
|
inherit
Official Code Helper
65613
0
1
Oct 22, 2024 1:56:19 GMT -8
Chris
"'Oops' is the sound we make when we improve"
9,018
December 2005
horace
RedBassett's Mini-Profile
|
Post by Chris on Jan 28, 2021 15:31:21 GMT -8
Forum URL: tdera.boards.net/As you can see in the picture above, the mini profile is wonky with it's contents. I know I edited it at some point but when I went to return to default it was stuck like this. I can not, for the life of me, figure out where I went wrong. As for the navigation tree, the text is a little lower on the tree when it should be more centered. I don't remember ever editing that and I can't figure out how to fix that either. Removing overflow:hidden and a set height allows the miniprofile to expand/shrink like it should
.mini-profile { color: #5b1d03; background: transparent; border: 1px solid #7d3010; border-radius: 10px; -moz-border-radius: 10px; -webkit-border-radius: 10px; text-align: left; /* overflow:hidden; */ padding: 0px 0px; width: 200px; /* height:300px; */ }
The navbar vertical centering looks to be dependent on the chosen initial font size on the body (in your case it is set to large) then the cascaded rules that take precedence in that navbar uses a compounded(percentage) rather than a fixed size meaning it is based off that globally chosen body font size
body { background-color: #5b1d03; background-image: none; background-attachment: fixed; line-height: 1.2; color: #f0a180; /* font-size:large; */ font-family: "Times New Roman",Times,serif; text-decoration: none; text-transform: none; font-variant: normal; }
|
|
inherit
187320
0
Jun 5, 2024 7:59:58 GMT -8
Don't Eat This
71
December 2012
dokupro
|
Post by Don't Eat This on Jan 28, 2021 15:47:34 GMT -8
I managed to fix the mini profile but I can't find where the navigation tree information is located.
|
|
inherit
Official Code Helper
65613
0
1
Oct 22, 2024 1:56:19 GMT -8
Chris
"'Oops' is the sound we make when we improve"
9,018
December 2005
horace
RedBassett's Mini-Profile
|
Post by Chris on Jan 28, 2021 16:34:44 GMT -8
I managed to fix the mini profile but I can't find where the navigation tree information is located. The 0.8em is a relative unit (meaning it is taking 80% of the current font-size which is currently set to large) so try reducing to 0.7em or lower for example to get a better fit if you wish to keep the large body font designation until it fits as you want.. (Note: the preview fails to predict on my end how it will look so you will probably need to save then go back in if additional modification is needed)
|
|
inherit
187320
0
Jun 5, 2024 7:59:58 GMT -8
Don't Eat This
71
December 2012
dokupro
|
Post by Don't Eat This on Jan 28, 2021 19:37:49 GMT -8
Thank you so much! All issues have been resolved.
|
|