• I am trying out a Woo Theme (the Original Premium News Theme) and I keep getting ul bullets at the top of my posts (11 of them, to be precise; see https://www.worsethancarnies.com/245/whistleblower/whistleblower-retaliation-complaint/ and https://www.worsethancarnies.com/1/uncategorized/hello-world/ ). The only file I can find that “seems” to be possibly related (I am largely ignorant with PHP) is the snippet I have attached here from the header.php:

    /
    <script type="text/javascript">
    
    jQuery(document).ready(function($){
    
        $(".nav2")
    
        .superfish({
    
            animation : { opacity:"show",height:"show"}
    
        })
    
        .find(">li:has(ul)") 
    
            .mouseover(function(){
    
                $("ul", this).bgIframe({opacity:false});
    
            })
    
            .find("a")
    
                .focus(function(){
    
                    $("ul", $(".nav>li:has(ul)")).bgIframe({opacity:false});
    
                });
    
        $(".cats-list")
    
        .superfish({
    
            animation : { opacity:"show",height:"show"}
    
        })
    
        .find(">li:has(ul)") 
    
            .mouseover(function(){
    
                $("ul", this).bgIframe({opacity:false});
    
            })
    
            .find("a")
    
                .focus(function(){
    
                    $("ul", $(".nav>li:has(ul)")).bgIframe({opacity:false});
    
                });

Viewing 1 replies (of 1 total)
  • Moderator t-p

    (@t-p)

    -try deactivating ALL plugins temporarily to narrow down and possibly fix the problem. If the problem goes away, activate them individually to find the culprit.

Viewing 1 replies (of 1 total)
  • The topic ‘Mysterious Bullets showing up at top of posts.’ is closed to new replies.