I'm not sure that changing the width of the template - no matter what the setting is -- 100%, 1000px, 780px, etc. -- it doesn't seem to change display issues -- one of them being alignment of the expiration date boxes for credit cards on Checkout #2 page. I'm wondering if others have this issue -- the month box is one line, to the right, and the year is a line lower, on the left -- doesn't look good at all.
Announcement
Collapse
No announcement yet.
Site Width - Checkout 2 Display issue
Collapse
X
-
Tags: None
-
OK I think I found the fix for this. here is a screen shot of what I changed to fix it in the inspect element feature on firefox. http://snag.gy/5FlIg.jpg I changed that pixel dimension from 10 to 100 and it seems to align the boxes now.
Comment
-
Originally posted by ForcedFabllc View PostOK I think I found the fix for this. here is a screen shot of what I changed to fix it in the inspect element feature on firefox. http://snag.gy/5FlIg.jpg I changed that pixel dimension from 10 to 100 and it seems to align the boxes now.
Thanks -- where are you making this change/fix?Joe Arbogast
http://www.birdsafestore.com
Comment
-
Birdsafe I figured out how to fix this issue on our template. I used the inspect element tool to find this code
.ccgField label {
float: left;
width: 200px;
line-height: 1.8em;
text-align: right;
margin-right: 10px;
}
I made changes to it so that last margin was 100px instead of 10
.ccgField label {
float: left;
width: 200px;
line-height: 1.8em;
text-align: right;
margin-right: 100px;
}
I then took that code and pasted it into the template editor page /default_modified.css
I added the /* checkout date fields */ at the top to make a visual note of my change so if i needed to delete it I could find it fast.
here is a screen shot of where I put mine. I just added it at the bottom of the file. http://snag.gy/aNVWV.jpg
/* checkout date fields */
.ccgField label {
float: left;
width: 200px;
line-height: 1.8em;
text-align: right;
margin-right: 100px;
}
Comment
-
Also have been crashing my way through editing the design of the templates learning some about CSS and what not as I go. one of my main goals is to eventually be able to customize our checkout page a lot. So I am practicing on a few things that I have read help conversions. The first one I have done and this is a rough attempt is to put a background color and border around my credit card inputs. This helps define the area and should help draw people to it. http://snag.gy/jAo0b.jpg
Comment
-
ForcedFabllc -- thanks -- can't find that design element (.ccgField label ...) in my css file. Did you create that whole section? From reading your message, that original block was already there? Perhaps the code is different in each Theme?Joe Arbogast
http://www.birdsafestore.com
Comment
-
Comment
-
Thanks ForcedFabllc - I would rather find the code - which I cannot -- and edit rather than risk an issue with inserting a second copy. Your image shows that code to be in "layout.css" -- which I cannot find anywhere. And that code is not in my default_modified.css fileJoe Arbogast
http://www.birdsafestore.com
Comment
Comment