MyBB Community Forums

Full Version: List MyCode is not showing in the Flatty theme
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Hello Smile
I have a small problem with the Flatty theme. Every time I use the list MyCode, it disapears. :/
But I didn't change the theme, so I didn't break it.

This is how it looks with Flatty:
[Image: vJPmvBR.png]

And this is how it looks like with the default theme:
[Image: zVvwgDT.png]
Add this to your Flatty global.css
ul.mycode_list,
ol.mycode_list {
  list-style: none !important;
  padding: 0.5em 1em !important;
}

ol.mycode_list li{
  list-style-type: decimal !important;
  margin-left: 1.3em !important;
}

ul.mycode_list li {
  padding-left: 1.3em !important;
}

ul.mycode_list li:before {
  content: "\f111" !important;
  font-family: FontAwesome !important;
  display: inline-block !important;
  margin-left: -1.3em !important;
  width: 1.3em !important;
  font-size: 90% !important;
}
(2017-02-25, 01:51 PM)SvePu Wrote: [ -> ]Add this to your Flatty global.css
ul.mycode_list,
ol.mycode_list {
  list-style: none !important;
  padding: 0.5em 1em !important;
}

ol.mycode_list li{
  list-style-type: decimal !important;
  margin-left: 1.3em !important;
}

ul.mycode_list li {
  padding-left: 1.3em !important;
}

ul.mycode_list li:before {
  content: "\f111" !important;
  font-family: FontAwesome !important;
  display: inline-block !important;
  margin-left: -1.3em !important;
  width: 1.3em !important;
  font-size: 90% !important;
}
Thank you! Big Grin