Tagged: x
-
AuthorPosts
-
April 15, 2016 at 5:39 am #884068
Hi all,
Latest-and-greatest version of X and Cornerstone. Site is abambo.co.uk
Trying to align the footer email form fields to the left. I’ve tried:
.x-subscribe-form { margin-left: 0 !important; }
and pretty much every permutation thereof (e.g. prefixing with
footer
,colorphon.top
, etc.) but I can’t seem to call the right class. Help please!April 15, 2016 at 4:29 pm #884896Hi there,
You can add this under Custom > CSS in the Customizer.
.x-subscribe-form { float: left; }
Hope that helps.
April 20, 2016 at 2:20 am #891358Hi,
No, it’s still there. Visit abambo.co.uk/blog/ and see the third widget in the sidebar.
April 20, 2016 at 8:52 am #891815Hi there,
Please try this code :
form#x-subscribe-form-869 { float: left; }
Hope it helps.
April 20, 2016 at 11:42 pm #892997That doesn’t work either.
Please advise.
April 21, 2016 at 7:30 am #893537Hi Gee,
Thanks for writing back!
I’ve checked your site but couldn’t find the provided CSS code in it. I assume you had removed it when it didn’t work. However, I have checked your custom CSS and it is missing a closing curly bracket for the media query. Due to that, the provided CSS code is only being applied to the smaller screens.
To resolve this issue, please find and replace following CSS code under Custom > CSS in the Customizer:
/* Change topbar height */ .x-topbar{ height: 20px; } @media (max-width: 635px){ .x-topbar{ height: 9.5rem; } /* Subscribe form align left */ .x-subscribe-form { float: left; } .x-sidebar .widget { float: left; }
With this:
@media (max-width: 635px) { .x-topbar { height: 9.5rem; } /* Subscribe form align left */ .x-subscribe-form { float: left; } .x-sidebar .widget { float: left; } }
And then insert the above provided CSS code.
Thank you!
April 24, 2016 at 11:46 pm #898047That worked perfectly. Thanks so much for your help.
April 25, 2016 at 6:21 am #898458You’re welcome! 🙂
April 30, 2016 at 1:36 pm #907120My Email form input won’t expand to 100% width in the mobile phone version. It does so in desktop.
http://e64.39f.myftpupload.com/
http://quirktools.com/screenfly/#u=http%3A//e64.39f.myftpupload.com/&w=320&h=533&a=34&s=1April 30, 2016 at 2:26 pm #907159Just got it fixed. Thanks
May 1, 2016 at 4:06 am #907635You are welcome.
-
AuthorPosts