This topic has 3 replies, 2 voices, and was last updated 9 years, 6 months ago by Anonymous.
Viewing 4 posts - 1 through 4 (of 4 total)
Not sure if it matters, but I’m working with a child theme. I’ve not made any changes to the sticky bar, though.
Find for the below code in header.ph file
<div id="sticky"><?php echo esc_html( get_option( 'atp_stickycontent' ) ); ?></div>
and replace it with this,
<div id="sticky"><?php echo get_option( 'atp_stickycontent' ); ?></div>
Also, find this code in style.css file
#sticky {
top: 0;
display: none;
position: relative;
width: 100%;
padding: 10px 0;
z-index: 1000;
background-color:#61bfff;
color: #222222;
font-size: 12px;
text-align: center;
}
and replace it with this,
#sticky {
top: 0;
display: block;
position: relative;
width: 100%;
padding: 10px 0;
z-index: 1000;
background-color:#61bfff;
color: #222222;
font-size: 12px;
text-align: center;
}
Perfect, thanks so much!
Viewing 4 posts - 1 through 4 (of 4 total)
You must be logged in to reply to this topic.