Top panel's menu border is not visible

Asto,

You will need to use two CSS border styles for adding vertical borders to either side of the layer.

Use border shorthand for each side. e.g. border-left: style width color; and/or border-right: style width color;"

HTML:
<div class="Top_panel">
    <div  class="menu"  style="border-left: solid 10px black; border-right: solid 10px black;">
        <h1><a href='#' target="_blank">menu</a></h1>
    </div>
</div>
 
Back
Top