Hide the extra heading in the docs so we don't have double headers showing up on each of the pages. Something changed in the wallaby release that causes multiple headers to show. This patch introduces some custom css to hide it for the time being. Change-Id: I5994bacda8a420db2d095cb98d75347fdd5e3f6d
7 lines
171 B
CSS
7 lines
171 B
CSS
/* Get rid of the double header on the page. This should really be fixed
|
|
* in the openstackdocstheme, but this is a temporary fix. */
|
|
.docs-body h1 {
|
|
display: none;
|
|
}
|
|
|