• Hi Mark,

    your plugin is very good, but I have to ask you an help to tune it.

    If you check on https://studiotopo.com/linkom_10/project/tn-001-tenditore-per-ante-scorrevoli you can see that the sticky area is the right column.

    Scrolling down, the social sharing buttons are going over the sticky area,
    and there is a so small margin above the footer.

    If you check the page on a mobile (or simply resizing the browser window),
    the grey thin lines of the sticky area go to the right without any margin.

    The theme I use is Divi 3.0.31

    Can you help me please?

    Thanks in advance

Viewing 2 replies - 1 through 2 (of 2 total)
  • Hi, thanks for trying my plugin!

    I checked your site and I can see what’s going on. The social media buttons aren’t actually going over the sticky area. They are behind, but since your element has no background color, we see the buttons through your element. The best way to avoid this, is to add a background color to the #sticky element:

    #sticky {
       background-color:#ffffff;	
    }

    The grey lines stick out on smaller screens because of this code in your CSS (line 14353 in style.css):

    /* Responsive Styles Tablet And Below */
    @media all and (max-width: 980px) {
    	/* Page Containers */
    	.et_pb_column {
    		width: 100% !important;
    	}

    Because of the “!important” tag (never a good idea, to be honest), my plugin is unable to give the element a width, and the 100% width is being assigned to it. Without that “!important” tag, things should work for my plugin, but I’m not sure why it’s there in the first place. Removing it might break other things.

    I’m not really sure what you mean by the margin above the footer?

    • This reply was modified 8 years, 1 month ago by Senff - a11n.
    Thread Starter STUDIOTOPO

    (@studiotopo)

    Hi Mark,

    thank you for your reply.

    I’m now investigating with Divi theme support…

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Some issues’ is closed to new replies.