Announcement

Collapse
No announcement yet.

Checkout text box border

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

    Checkout text box border

    Hi,

    Can someone please advise on where you change the border and weight on the text fields within the checkout?

    I'm guessing it is controlled by <div class="InvoiceField" > and InvoiceField wideInput,? but I cant find where either of these are to change.

    Edit: On the image below I'm looking to get the invoice and delivery text boxes the same as the password boxes. they are slightly taller and with lighter border. but would like them to all be the same.

    Click image for larger version

Name:	12345.jpg
Views:	30
Size:	20.3 KB
ID:	557733
    Attached Files
    Reverse Osmosis Water Filters

    #2
    Try adding this to the bottom of the 'Current Stylesheet':
    Code:
    .InvoiceField input {
    background-color: field!Important;
    padding: .3em!Important;
    }
    Or you could use ideas from here:
    https://www.w3schools.com/css/tryit....e=trycss_forms
    Jonathan Chappell
    Website Designer
    SellerDeck Website Designer
    Actinic to SellerDeck upgrades
    Graphicz Limited - www.graphicz.co.uk

    Comment


      #3
      Thanks Jonathan,

      Tried that and uploaded site, but seems that did not change anything.
      Reverse Osmosis Water Filters

      Comment


        #4
        I don't know where you have added those styles but it is not to the current stylesheet: Right click and inspect element thus:

        Click image for larger version

Name:	ohnoitsnot.jpg
Views:	0
Size:	167.4 KB
ID:	557740
        Attached Files
        Jonathan Chappell
        Website Designer
        SellerDeck Website Designer
        Actinic to SellerDeck upgrades
        Graphicz Limited - www.graphicz.co.uk

        Comment


          #5
          Try adding this to your style sheet:

          Code:
          .InvoiceField input, .DeliverField input {border: 1px solid #bbb;}
          Change #bbb to whatever border color you want.

          EDIT, added padding and radius:

          Code:
          .InvoiceField input, .DeliverField input {border: 1px solid #666;padding: 5px 0px;border-radius: 2px;}
          Many Thanks
          Lee
          www.mdnsupplies.co.uk
          www.hookandloopfasteners.co.uk

          Comment


            #6
            Thanks Lee, but that also does not work.

            Like Jonathan shows, It's not controlled by css and reading the style from somewhere else, maybe one of the .pl files. Although not sure I should start messing with those.

            Its not something I've added, that is just the standard smart checkout.
            Reverse Osmosis Water Filters

            Comment


              #7
              Do a hard refresh (Firefox ctrl and F5) and you'll see it has worked, just need to tweak the drop down..
              Many Thanks
              Lee
              www.mdnsupplies.co.uk
              www.hookandloopfasteners.co.uk

              Comment


                #8
                Add this to your style sheet:

                Code:
                .InvoiceField select, .DeliverField select {border: 1px solid #666;border: 1px solid #666;  padding: 5px 5px;  border-radius: 2px;}
                That will also style the drop down, also in the css I gave in my first post:

                Code:
                .InvoiceField input, .DeliverField input {border: 1px solid #666;padding: 5px 0px;border-radius: 2px;}
                change the padding to:

                Code:
                padding: 5px 5px;
                This gives a neater look to the form fields when filled in
                Many Thanks
                Lee
                www.mdnsupplies.co.uk
                www.hookandloopfasteners.co.uk

                Comment

                Working...
                X