CSS to make slideshow icons bigger

Does anyone know which CSS I should use in order to make the icons on this plugin bigger?

image

Thanks in advance!

First you would need to inspect the elements. Open your web browsers console and then go to the elements section. Then you can find the elements and see if they have a unique “ID” or are assigned to a specific “class”. If they do not then you can give them one and then using that id you can add css in your settings → seo/metatags → script in the body that looks like this:

<style>
    #idOfElement {
        width: 100px;
        height: 100px;
    }
</style>

Hi @williamtisdale - It’s working, I had to change the width & height to “font-size: 24px;” in this case.

You pointed me in the right direction, thank you! :slight_smile:

1 Like