Github user ewencp commented on the issue:
https://github.com/apache/kafka-site/pull/78
@joel-hamill Something like this should work:
```
diff --git a/css/styles.css b/css/styles.css
index 1e75e91..2aa587e 100644
--- a/css/styles.css
+++ b/css/styles.css
@@ -241,6 +241,14 @@ ol.toc > li {
padding: 2rem 0 1rem;
background-color: #FFFFFF;
}
+.head th {
+ padding-left: .7rem;
+ padding-right: .7rem;
+}
+.head th.logo {
+ padding-left: 0;
+ padding-right: 4rem;
+}
.footer {
flex: 1;
position: relative;
diff --git a/includes/_top.htm b/includes/_top.htm
index 2f69803..ff07f8f 100644
--- a/includes/_top.htm
+++ b/includes/_top.htm
@@ -7,43 +7,13 @@
<div class="head">
<table>
<tr>
- <th><a href="/"><img width="325"
height="97" class="logo" src="/images/logo.png"></a></th>
- <th></th>
- <th></th>
- <th></th>
- <th></th>
- <th></th>
- <th></th>
- <th></th>
- <th></th>
- <th></th>
- <th></th>
- <th></th>
- <th></th>
+ <th class="logo"><a href="/"><img
width="325" height="97" class="logo" src="/images/logo.png"></a></th>
<th><a href="/quickstart">Getting
Started</a></th>
- <th></th>
- <th></th>
- <th></th>
<th>|</th>
- <th></th>
- <th></th>
- <th></th>
<th><a
href="/documentation">Documentation</a></th>
- <th></th>
- <th></th>
- <th></th>
<th>|</th>
- <th></th>
- <th></th>
- <th></th>
<th><a
href="/downloads">Downloads</a></th>
- <th></th>
- <th></th>
- <th></th>
<th>|</th>
- <th></th>
- <th></th>
- <th></th>
<th><a href="/events">Community</a></th>
</tr>
</table>
```
Would just push it, but don't have write access to your copy of the repo.
Complete updated version is here
https://github.com/ewencp/kafka-site/tree/joel-hamill/header-nav---
