x

submit button positioning

Hi all,


I am trying to position the comment submit button to the left, as it falls partially out of screen on mobile. (see screenshots)


I've been tinkering with the code, adding "display: block" or "position: absolute". But nothing makes it moves.

.blog-button span {
font-family: 'Quicksand', sans-serif;
font-size: 18px;
font-weight: 300;
background: none;
border: none;
background: transparent !important;
background-image: none !important;
border-radius: 3px;
}

.blog-button:hover {
background: #f2f2f2;
}

Does anyone have an idea?

Thanks in advance

url: https://jokitravels.weebly.com/trip2019/4-taman-negara

imageDesktopimageMobile

927 Views
Message 1 of 4
Report
3 REPLIES 3
Square

Thanks for posting @JoKi. This is out of my league, but hopefully another user will be able to give you some advice. Smiley Happy

909 Views
Message 5 of 4
Report

Anyone? Please.

899 Views
Message 5 of 4
Report

Try something like this @JoKi:

<style>
    @Media and screen(max-width: 767px)
    {
        #commentSubmit
        {
            float: none !important;
            margin-top: 30px !important;
        }
    }
</style>

896 Views
Message 5 of 4
Report
This thread has been archived and locked. Please start a new thread if you would like to continue the conversation.