XF 2.1 How to add space between thumbnail and full image buttons?

viper357

Well-known member
Hi, can someone help with how to add a space between these two buttons please?

screenshot-www.marineaquariumsa.com-2020.03.21-07_39_33.webp

I think this is the right code from the helper_attach_upload template

Code:
                                <span class="buttonGroup buttonGroup--aligned">
                                    <xf:button class="button--small js-attachmentAction" data-action="thumbnail">
                                        {{ phrase('thumbnail') }}
                                    </xf:button>
                                    <xf:button class="button--small js-attachmentAction" data-action="full">
                                        {{ phrase('full_image') }}
                                    </xf:button>
                                </span>
 
Top Bottom