05/01/2014 at 9:55 am
#289828
Keymaster
@ Ian
It is being caused by the theme, specifically the width being set in this file. Here’s the relavent section of code:
input,
select,
textarea {
background-color: #fff;
border: 1px solid #ddd;
color: #999;
font-size: 14px;
font-size: 1.4rem;
font-weight: 400;
padding: 16px;
padding: 1.6rem;
width: 100%;
}
To fix it, you’ll have to override that width. Here’s how to do it in an update safe way with 0.8.x:
Create a new text text file using Notepad and save it with the following contents named as cn-custom.css.
#cn-cmap form.cn-form select.cn-cat-select {
max-width: 100%;
}
Login to your site using FTP and go to this folder:
../wp-content/uploads/
Create a new folder named: connections-templates.
Upload the cn-custom.css to the connections-templates.
That should do it.
