@phenomlab said in Reading Meter Progress bar:
Add this into Custom Header
<div class=“reading-meter”>
<div class=“reading-meter-progress”>
<div class=“reading-meter-progress-bar” id=“myBar”></div>
</div>
Sample CSS
.reading-meter {
position: fixed;
top: 0px !important;
z-index: 1111;
width: 100%;
background-color: #000000;
}
.reading-meter-progress {
width: 100%;
height: 3px; z-index: 1111;
background: #ffffff;
}
.reading-meter-progress-bar {
height: 3px;
background-color:#dddddd;
width: 0%;
}
.reading-meter {
visibility: hidden;
}
.reading-meter.show {
visibility: visible;
}
I allow myself a correction:
Add this into Custom Header
<div class="reading-meter">
<div class="reading-meter-progress">
<div class="reading-meter-progress-bar" id="myBar"></div>
</div>
</div>
Sample CSS
.reading-meter {
position: fixed;
top: 0px !important;
z-index: 1111;
width: 100%;
background-color: #000000;
}
.reading-meter-progress {
width: 100%;
height: 3px; z-index: 1111;
background: #ffffff;
}
.reading-meter-progress-bar {
height: 3px;
background-color:#dddddd;
width: 0%;
}