Hi, Acosmin!
Thanks for the rapid response. The floating footer bar works perfectly and is currently visible at the footer of my home page. I will double check the code to make certain nothing is missing. Two snippets of code are added to the footer.php and the other is added to the style.css. I currently have another theme active and the footer bar is visible and fixed to the bottom of the footer . Here is the footer code. Ex:
Goes in footer.php before closing body tag:
<div class="fixedBar">
<div class="boxfloat">
<ul id="tips">
<li><a href="https://celebrityscope.net/">celebrity scope Link is the First Item</a></li>
<li><a href="https://celebrityscope.net/blog">celebrity scope blog Link is the Second Item</a></li>
</ul>
</div>
</div>
Also goes in footer.php
<script type="text/javascript">
this.randomtip = function(){
var length = $("#tips li").length;
var ran = Math.floor(Math.random()*length) + 1;
$("#tips li:nth-child(" + ran + ")").show();
};
$(document).ready(function(){
randomtip();
});
</script>
Goes at the footer of style.css file
/*WPBeginner Footer Bar*/
.fixedBar{background: #000; bottom: 0px; color:#fff; font-family: Arial, Helvetica, sans-serif; left:0; padding: 0px 0; position:fixed; font-size:16px; width:100%; z-index:99999; float:left; vertical-align:middle; margin: 0px 0 0; opacity: 0.95; font-weight: bold;}
03
.boxfloat{text-align:center; width:920px; margin:0 auto}
#tips, #tips li{margin:0; padding:0; list-style:none}
#tips{width:920px; font-size:20px; line-height:120%;}
#tips li{padding: 15px 0; display:none}
#tips li a{color: #fff;}
#tips li a:hover{text-decoration: none;}
Question#2 I added the following suggested code for Weibo right after the code below. However, I do not see the Weibo icon appearing within the header icons when I scroll. Did I miss something?
<li><a href="<?php if( $header_rss != '' ) { echo esc_url( $header_rss ); } else { bloginfo( 'rss2_url' ); } ?>" class="social-btn right rss"><?php ac_icon('rss'); ?></a></li>
<li><a href="https://weibo.com/fantasy05" class="social-btn right flikr"><?php ac_icon('weibo'); ?></a></li>
Also I have the Quora logo… I jus need to know if it is still possible to add it although, it isn’t listed in the package?