Windows 10 will reach EOS (end of support) on October 14, 2025. For more information, see this article.

Avatar for Username

ძიება მხარდაჭერაში

ნუ გაებმებით თაღლითების მახეში. აქ არავინ უნდა მოგთხოვოთ ტელეფონზე დარეკვა, შეტყობინების გაგზავნა ან პირადი მონაცემების გაზიარება. რამე საეჭვოს შემჩნევისას გთხოვთ გვაცნობოთ „დარღვევის მოხსენებით“.

ვრცლად

How to post code on forum?

  • 8 პასუხი
  • 1 მომხმარებელი წააწყდა მსგავს სიძნელეს
  • 7 ნახვა
  • ბოლოს გამოეხმაურა RashanH

How do you post source code on these support forums?

Like below;

  1. TabsToolbar {
position: absolute !important;
bottom: 0 !important;
width: 100vw !important;

}

How do you post source code on these support forums? Like below; #TabsToolbar { position: absolute !important; bottom: 0 !important; width: 100vw !important; }

გადაწყვეტა შერჩეულია

Note that you need to enter <pre> at the start of the CSS code and place the closing pre tag </pre> after the code.

<pre>
#TabsToolbar {
 position: absolute !important;
 bottom: 0 !important;
 width: 100vw !important;
}
</pre>
პასუხის ნახვა სრულად 👍 0

ყველა პასუხი (8)

The post above is not how I posted it.

You would be better off posting the code on Pastebin.


Open a text/word program and load the file. Left-click once. Now <Control> A to highlight everything, then <Control> C to copy it.

Next, have your web browser go to; https://pastebin.com/

Paste <Control> P the content of the file in the window. Note: On the bottom, fill out the boxes as best you can.

Now press Create A New Paste. The page will reload. Copy the new web address, and post it here.

You can try using the < pre>insertext< /pre> tags

just remove the space after the <

insertext< /pre> code  

#TabsToolbar {
 position: absolute !important;
 bottom: 0 !important;
 width: 100vw !important;
}

code <pre>insertext< /pre>

Thanks, it worked, I tweaked the tag a little.

If your ultimate question is why this doesn't work in Firefox 71 --

jorb said

#TabsToolbar {
  position: absolute !important;
  bottom: 0 !important;
  width: 100vw !important;
}

-- the basic answer is that this is also needed in that list of rules now:

  display: block !important;

However, if that doesn't fix it, then you may prefer to start over with fresh "tabs on bottom" code.

შერჩეული გადაწყვეტა

Note that you need to enter <pre> at the start of the CSS code and place the closing pre tag </pre> after the code.

<pre>
#TabsToolbar {
 position: absolute !important;
 bottom: 0 !important;
 width: 100vw !important;
}
</pre>

jscher2000,

You can read about it here https://support.mozilla.org/en-US/questions/1274197

I'm still working on how to post code in editor. Ether way my tabs are on the bottom again.

#TabsToolbar {
 position: absolute !important;
 bottom: 0 !important;
 width: 100vw !important;
}

cor-el,

I think i figured out how to post code. Thanks for fixing my code post in the above link.

Hello Jorb,

Here is an addition.

var faq = new Array(3)

You can use < code > tag, as well as < pre >.

Thank you!