MyBB Community Forums

Full Version: Creating a theme, looking for help
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
I need some help, I am creating a theme and I want to give <body> a tag or a class for all pages not for only index,

is there any possible way to do that?
Include something like the following in your headerinclude template:

<script type="text/javascript">
$(document).ready(function() {
  $("body").addClass("hello-world");
});
</script>
(2017-08-03, 07:55 PM)Wage Wrote: [ -> ]Include something like the following in your headerinclude template:

<script type="text/javascript">
$(document).ready(function() {
  $("body").addClass("hello-world");
});
</script>

This or you can modify most of the templates manually to add class to body tags. This way you can even give different class to your body tags, advantage being you can use the page active status using this.