noellarkin
Senior Member
- Mar 14, 2021
- 1,006
- 1,492
another approach: for that box that has the varying messages, can the font size be made small enough that it doesn't matter? lol just grasping at straws, I know 
Really hard to know without seeing all the css and the html. Could be a ton of things making the issueHere, I added a border to the 2 elements that are causing me the problem, just so you guys can see clearly...
View attachment 187292
View attachment 187293
See?
Oh that is a shame. If you could should me the actual html structure I could give you the css that would fix it.Also the overflowing is probably due to the main bar being position:fixed and then some margins overflowing
another approach: for that box that has the varying messages, can the font size be made small enough that it doesn't matter? lol just grasping at straws, I know![]()
I thought of that haha
It's still gonna move it, no matter how small it still gonna move the elements to the right of it.
Its strange how large that search box is. I used to think the order number in boxes was relatively spread out on the page (ie fromHere, I added a border to the 2 elements that are causing me the problem, just so you guys can see clearly...
View attachment 187292
View attachment 187293
See?
Really hard to know without seeing all the css and the html. Could be a ton of things making the issue
Yes. Too make it out of the flow of the page you can doIsn't there a way to make an element display like a ghost element? Like, just appear on top of whatever is around it? Without affecting what's around it.
Its strange how large that search box is. I used to think the order number in boxes was relatively spread out on the page (ie from
1 to 4 would mean dividing the page in 4 parts).
Yes. Too make it out of the flow of the page you can do
div{
position:fixed;
bottom:0;
left:0;
width:100vw;
z-index:999999
}
Cool!HAHAHAAAA That worked
But like, well, I need to play with it but I think we're onto something here. Here is the firstborn freaky accident child
View attachment 187297
View attachment 187298
See how the box didn't move when I typed something and the "4 of 177 matches" appeared? That's what we need yeah![]()
Cool!
[anonid="findbar-textbox-wrapper"] {
-moz-box-ordinal-group: 4 !important;
margin-left: 10px !important;
border: 1px solid black !important;
position:fixed !important;
bottom:0 !important;
left:400px !important;
width:70vw !important;
z-index:999999 !important;
padding-left:-150px !important;
}
.findbar-closebutton {
-moz-box-ordinal-group: 2 !important;
position: relative !important;
float: right !important;
}
.findbar-highlight { -moz-box-ordinal-group: 1 !important; }
.findbar-case-sensitive { -moz-box-ordinal-group: 0 !important; }
.findbar-entire-word { -moz-box-ordinal-group: 0 !important; }
.findbar-find-fast.find-status-icon { -moz-box-ordinal-group: 2 !important; display:none !important; }
.findbar-find-fast.found-matches {
-moz-box-ordinal-group: 3 !important;
border: 1px solid black !important;
position:fixed !important;
bottom:0 !important;
left:0 !important;
width:6vw !important;
z-index:999999 !important;
}
.findbar-find-fast.findbar-find-status { display: none !important; }
.findbar-closebutton {
-moz-box-ordinal-group: 4 !important;
display:block !important;
margin-left: auto !important;
margin-right: 0 !important;
}
[anonid="findbar-textbox-wrapper"] {
-moz-box-ordinal-group: 4 !important;
margin-left: 10px !important;
border: 1px solid black !important;
position:fixed !important;
bottom:0 !important;
left:400px !important;
width:70vw !important;
z-index:999999 !important;
}
.findbar-closebutton {
-moz-box-ordinal-group: 4 !important;
display: block; !important;
margin-left: 350px !important;
}
[anonid="findbar-textbox-wrapper"] {
-moz-box-ordinal-group: 4 !important;
bottom:0 !important;
margin-left:410px !important;
width:80vw !important;
position:fixed !important;
}
.findbar-closebutton {
position: relative !important;
float: right !important;
margin-left: 1100px !important;
margin-bottom: -25px !important;
}
.findbar-find-fast.found-matches {
-moz-box-ordinal-group: 3 !important;
}
.findbar-find-fast.findbar-find-status {
-moz-box-ordinal-group: 3 !important;
}
.findbar-highlight {
-moz-box-ordinal-group: 1 !important;
}
.findbar-case-sensitive {
-moz-box-ordinal-group: 0 !important;
}
.findbar-entire-word {
-moz-box-ordinal-group: 0 !important;
}
.findbar-find-fast.find-status-icon {
display:none !important;
}