Search Support

Avoid support scams. We will never ask you to call or text a phone number or share personal information. Please report suspicious activity using the “Report Abuse” option.

Learn More

Cuireadh an snáithe seo sa chartlann. Cuir ceist nua má tá cabhair uait.

How to post code on forum?

  • 8 bhfreagra
  • 1 leis an bhfadhb seo
  • 19 views
  • Freagra is déanaí ó RashanH

more options

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

Réiteach roghnaithe

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>
Read this answer in context 👍 0

All Replies (8)

more options

The post above is not how I posted it.

more options

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.

more options

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

just remove the space after the <

more options
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.
more options

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.

more options

Réiteach Roghnaithe

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>
more options

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.

more options

Hello Jorb,

Here is an addition.

var faq = new Array(3)

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

Thank you!