I'm trying to customize the text "TITLE" in my HTML and CSS code,
#headerf {
background-color: #717571;
overflow-x: hidden;
position: fixed;
z-index: 99999;
}
.headert {
position: fixed;
z-index: 9999999;
width: 100%;
height: 60px;
top: 0px;
}
.headert h3 {
text-align: center;
color: white;
margin-top: 30px;
display: inline-block;
}
.headert a.h-left {
float: left;
color: white;
font-size: 1.5em;
margin-left: 1em;
margin-top: 30px;
position: relative;
display: inline-block;
}
.headert a.h-right {
float: right;
color: white;
margin-top: 30px;
position: relative;
margin-right: 1em;
font-size: 1.5em;
display: block;
}
<div id="headerf" class="headert">
<a href="#" class="h-left">LEFT</a>
<h3>TITLE</h3>
<a href="#" class="h-right">RIGHT</a>
</div>
Check out the code snippet here
I've tried everything I know, but the text customization still isn't working (and it's getting worse). I'm at a standstill. Thanks in advance for your help!