I would like to change the size of the search bar in my network but i do not know how to do it.
i would apppreciate some help. thanks.
Current status of the Ning Platform is always available on the Ning Status Blog.
Some interesting articles related to community management, digital marketing etc. could be found in our digest. Don't hesitate to leave a feedback so we would know that we should continue :-)
Replies
did you figure this out?
I was just looking at this Justin :-)
Here is some css for you to be able to adjust the sizes, I would try not to make them to wide though. You will notice the Ning bar one is in a media query so under 780px it will return to normal as there is not a lot of room up there.
/**** SEARCH SIZE ADJUSTMENTS ****/
/** You can also set different sizes depending on the page you want by adding the page name before it or if you only want to adjust for a particular page only **/
/** An example is the first line where I want to adjust a photo page search box only or if I want it to be a different size than the other pages **/
/** example of using a page name in front of the sizing **/
.page-photos .bundlePage-search .textfield{
width:500px;
}
/** MEMBERS LIST PAGE **/
.membersListPage input.textfield.advanced-search__form-input{
width:300px!important;
}
/** GLOBAL SEARCH BOX'S ie Photos Blogs etc **/
.bundlePage-search input{
width:300px;
}
/** FOR NING BAR SEARCH **/
@media only screen and ( min-width:780px ){
.ningbar-userLinks .globalsearch{
width:400px;
}}
Thank you very much for your help!!
Bizz !! you are the best !!