Membership is FREE – with unlimited access to all features, tools, and discussions. Premium accounts get benefits like banner ads and newsletter exposure. ✅ Signature links are now free for all. Share your own thoughts and experience, accounts may be terminated for violations.

Move button to the left

Joined
May 14, 2012
Posts
358
Reaction score
9
Hi, I was wondering if anyone knows how I could move the "get a quote" button on my website over to the left a bit, so it lines up with the first box above it. scrap-cars.net - wordpress theme

Thanks in advance
 

Attachments

  • Capture.PNG
    Capture.PNG
    65 KB · Views: 170
Add 'padding-left: 0px' to this in your CSS:



If the theme doesn't easily allow you to add custom CSS try a plugin like this.

Hi, thanks very much, all worked, but has made the "postcode & phone number" fields squeezed together. Is there a way I can put a gap between them?

Regards
 
Swap this

Code:
<div class="col-sm-4 norightpadding">
<p><span class="wpcf7-form-control-wrap text-124"><input type="text" name="text-124" value="" size="40" class="wpcf7-form-control wpcf7-text success" aria-invalid="false" placeholder="Postcode"></span></p>
</div>

For this

Code:
<div class="col-sm-4">
<p><span class="wpcf7-form-control-wrap text-124"><input type="text" name="text-124" value="" size="40" class="wpcf7-form-control wpcf7-text success" aria-invalid="false" placeholder="Postcode"></span></p>
</div>
 
Swap this

Code:
<div class="col-sm-4 norightpadding">
<p><span class="wpcf7-form-control-wrap text-124"><input type="text" name="text-124" value="" size="40" class="wpcf7-form-control wpcf7-text success" aria-invalid="false" placeholder="Postcode"></span></p>
</div>

For this

Code:
<div class="col-sm-4">
<p><span class="wpcf7-form-control-wrap text-124"><input type="text" name="text-124" value="" size="40" class="wpcf7-form-control wpcf7-text success" aria-invalid="false" placeholder="Postcode"></span></p>
</div>

Hi, that sorted it, thanks. Much appreciated
 
Top Bottom