• Is there any way to remove the play button that displays on the top button? I am using a child theme so not sure where to go or what to do to remove it.

Viewing 6 replies - 1 through 6 (of 6 total)
  • AddWeb Solution

    (@addweb-solution-pvt-ltd)

    Hello rossmarc,

    Put below css into your current active child theme’s style.css file.


    #top span img{ display: none;}

    Hope this will helps you.

    Theme Author Derek

    (@chiroderek)

    The above solution will work, but you can also use the opacity feature. Opacity will leave the button there, but nobody will be able to see it (so it will keep the spacing). You can also use CSS in your child theme to control the padding around the links, so that the height of the boxes on the right are equal to your image height.

    To make the button go away you can do what rossmarc described above.

    To make it invisibible, but keep the spacing you can try this:
    .right-front-page-boxes a span img{opacity: 0;}

    To change the padding around the top link you can try this:
    .right-front-page-boxes #top a{padding:10px; 25px;}

    And for the bottom boxes you can try this:
    .right-front-page-boxes a{padding:8px; 25px;}

    You’ll just need to change the padding height from 10px and 8px to something else.

    Thread Starter rossmarc

    (@rossmarc)

    Added #top span img{ display: none;} to my child style.css file but the play button is still there but worked when added to the Additional CSS in the theme customization.

    Thanks

    • This reply was modified 8 years, 1 month ago by rossmarc.
    • This reply was modified 8 years, 1 month ago by rossmarc.
    Thread Starter rossmarc

    (@rossmarc)

    Now to get the Top button to look and behave like the other 3

    Theme Author Derek

    (@chiroderek)

    Did you get this sorted out?

    Thread Starter rossmarc

    (@rossmarc)

    I got the play button to go away but the top right side button look like the rest do in hover over.

Viewing 6 replies - 1 through 6 (of 6 total)
  • The topic ‘Front Page Boxes on Right’ is closed to new replies.