1

I am using docfx 2.43.3 with own theme (based on default theme). This is the result: http://docs.example.com/.

In this article page, http://docs.example.com/articles/add_more.html.

How would you increase the width of this page (all page and main block)?

enter image description here

Twenty
  • 5,234
  • 4
  • 32
  • 67
Vy Do
  • 46,709
  • 59
  • 215
  • 313

1 Answers1

3

As a possible first step, you could try changing all containers to container-fluid.

var containers = $(".container");
containers.removeClass("container");
containers.addClass("container-fluid");
Twenty
  • 5,234
  • 4
  • 32
  • 67
hcdocs
  • 1,078
  • 2
  • 18
  • 30