Share Buttons not working in Oxygen Theme

  • Unknown's avatar

    Hi! I’m having an issue with the share buttons, they appear on the posts, exactly where I want them to, in the top right hand corner, but they are not clickable. It’s strange, because they used to be clickable and for some reason today they are not. I didn’t change anything, at least not deliberately. I’m new to CSS so I’m not sure if I did something strange to make it happen. Here is the code I entered to move them from the bottom of the post to the top right hand corner. I hope someone can help.

    .single .entry-content {
    	position: relative;
    	padding-top: 60px;
    }
    
    .single div.sharedaddy {
    	position: absolute !important;
    	width: 100%;
    	top: -5px;
    }
    
    .single div.sharedaddy .sd-content {
    	width: 100%;
    	text-align: right;
    }
    
    .single div.sharedaddy .sd-content ul {
    	display: inline-block;
    }
    
    .single div.sharedaddy div.sd-block {
    	border-top: none !important;
    }
    
    .single div.sharedaddy h3, #content div.sharedaddy h3, #main div.sharedaddy h3, #primary div.sharedaddy h3 {
    	padding-right: 10px;
    	width: auto;
    }
    
    .single div.sharedaddy .sd-content {
    	float: right;
    	width: auto;
    }
    
    .single div.sharedaddy .sd-title {
    	display: none;
    }

    The blog I need help with is: (visible only to logged in users)

  • Unknown's avatar

    Hi, change the CSS selector for this in your CSS

    .single div.sharedaddy {
    	position: absolute !important;
    	width: 100%;
    	top: -5px;
    }

    so that it looks like this.

    .single #jp-post-flair {
        position: absolute !important;
        top: -5px;
        width: 100%;
    }
  • The topic ‘Share Buttons not working in Oxygen Theme’ is closed to new replies.