Breaks did not work properly. Add new menu cass for outer padding, ul does not seem to hold it well.

This commit is contained in:
Hyperling 2025-01-29 04:55:18 -07:00
parent 9ff2b29b51
commit c50f790827
2 changed files with 5 additions and 3 deletions

View File

@ -35,6 +35,10 @@
} }
/** Make the menu items centered and layout horizontal. **/ /** Make the menu items centered and layout horizontal. **/
.menu {
padding-top: 10px;
padding-bottom: 10px;
}
.menu-list { .menu-list {
text-align: center; text-align: center;
list-style-type: none; list-style-type: none;

View File

@ -1,7 +1,6 @@
#!/usr/bin/php #!/usr/bin/php
<div class="row header"> <div class="row header menu">
<ul class="menu-list"> <ul class="menu-list">
<br/>
<li class="col-1"></li> <li class="col-1"></li>
<li class="col-2 menu-item"><a href="/home/">Android Apps</a></li> <li class="col-2 menu-item"><a href="/home/">Android Apps</a></li>
<li class="col-2 menu-item"><a href="/media/">Books / Videos / Images</a></li> <li class="col-2 menu-item"><a href="/media/">Books / Videos / Images</a></li>
@ -9,6 +8,5 @@
<li class="col-2 menu-item"><a href="/contact/">Contact Information</a></li> <li class="col-2 menu-item"><a href="/contact/">Contact Information</a></li>
<li class="col-2 menu-item"><a href="/support/">Support / Donate</a></li> <li class="col-2 menu-item"><a href="/support/">Support / Donate</a></li>
<li class="col-1"></li> <li class="col-1"></li>
<br/>
</ul> </ul>
</div> </div>