Support has been upgraded!
The Support Forum is closed. Not to worry! Providing the top quality support you expect and we're known for will continue! We're not ending support, just changing where you submit requests. This will provide you with the best experience possible.
Premium Support
Have you purchased an addon for Connections such as one of our premium templates or extensions with a valid license and you need help?
Please open a Support Ticket in your user account.
Free Support
Are you using the free Connections plugin? Don't worry, you are still very important to us! We are still providing you with the same high quality support that we're known for.
Please open a new support topic in the WordPress support forums for Connections.
- This topic has 1 reply, 2 voices, and was last updated 12 years, 8 months ago by
Steven Zahm.
-
AuthorPosts
-
12/10/2013 at 7:53 pm #275144
Justin White
ParticipantHi
Thanks for helping me before, but this time Im trying to customise the Search Box eg different size different font colour but no matter what I do in the CSS file like setting the width to 200px it just doesnt work:cn-search-input {
background: #000000 none;
border-width: 1px 0 1px 1px;
border-style: solid;
border-color: #000000;
border-radius: 3px 0 0 3px;
-moz-border-radius: 3px 0 0 3px;
-khtml-border-radius: 3px 0 0 3px;
-webkit-border-radius: 3px 0 0 3px;
box-shadow: inset 0 1px 1px rgba(0,0,0,0.1);
-moz-box-shadow: inset 0 1px 1px rgba(0,0,0,0.1);
-webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,0.1);
box-sizing: border-box;
-moz-box-sizing: border-box;
-webkit-box-sizing: border-box;
color: #888;
display: inline-block;
font-size: 12px;
float: none;
height: 28px;
line-height: 20px;
margin: 1px 0 1px 1px !important;
padding: 3px 6px;
text-align: left;
vertical-align: bottom;
width: 200px;Where am I going wrong ???
Thanks Again
Justin White
12/11/2013 at 11:42 am #275181Steven Zahm
Keymaster@ Justin
The code you pasted above has two errors. Try this:
#cn-search-input { background: #000000 none; border-width: 1px 0 1px 1px; border-style: solid; border-color: #000000; border-radius: 3px 0 0 3px; -moz-border-radius: 3px 0 0 3px; -khtml-border-radius: 3px 0 0 3px; -webkit-border-radius: 3px 0 0 3px; box-shadow: inset 0 1px 1px rgba(0,0,0,0.1); -moz-box-shadow: inset 0 1px 1px rgba(0,0,0,0.1); -webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,0.1); box-sizing: border-box; -moz-box-sizing: border-box; -webkit-box-sizing: border-box; color: #888; display: inline-block; font-size: 12px; float: none; height: 28px; line-height: 20px; margin: 1px 0 1px 1px !important; padding: 3px 6px; text-align: left; vertical-align: bottom; width: 200px; }Which file are you inserting this into or editing?
If you are editing this file
cn-user.cssthe changes will have no effect because the minified version of the file is loaded unless theWP_DEBUGis set totrue. You need to apply the changes to thecn-user.min.cssfile.However, I do not recommend that because those changes will be lost during a plugin update. If the theme has a custom CSS area, add it there. You might also need to add
!importantafter the CSS attribute value that way if the Connections CSS is loaded after the theme’s custom CSS file it is not overridden by the default style for Connections.Hope that helps!
-
AuthorPosts
You cannot reply to this support topic. Please open your own support topic.
