Windows 10 bereikte EO (einde ondersteuning) op 14 oktober 2025. Lees voor meer informatie dit artikel.

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

Zoeken in Support

Vermijd ondersteuningsscams. We zullen u nooit vragen een telefoonnummer te bellen, er een sms naar te sturen of persoonlijke gegevens te delen. Meld verdachte activiteit met de optie ‘Misbruik melden’.

Meer info

Deze conversatie is gearchiveerd. Stel een nieuwe vraag als u hulp nodig hebt.

How to post code on forum?

  • 8 antwoorden
  • 1 heeft dit probleem
  • 20 weergaven
  • Laatste antwoord van RashanH

meer opties

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; }

Gekozen oplossing

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>
Dit antwoord in context lezen 👍 0

Alle antwoorden (8)

meer opties

The post above is not how I posted it.

meer opties

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.

meer opties

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

just remove the space after the <

meer opties
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.
meer opties

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.

meer opties

Gekozen oplossing

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>
meer opties

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.

meer opties

Hello Jorb,

Here is an addition.

var faq = new Array(3)

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

Thank you!