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.
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 9 years, 4 months ago by
rossmarc.
-
This reply was modified 9 years, 4 months ago by
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?
I got the play button to go away but the top right side button look like the rest do in hover over.