By Jannik L. on Monday, 16 June 2014
Replies 3
Likes 0
Views 0.9K
Votes 0
I can see the search bar and the ask question bar are separate here. I am trying to disable the search bar but keep the ask question. I am also trying to make the ask question full width. Screenshots of how it is and how I want it below.

Is there a setting I am missing? or is there no way to separate the two in the current release?
Hello Jannik Laursen ,

Yes, you're right, Unfortunately that was not possible to make it separate from the setting, because that was the default behaviour in the Easydiscuss.
·
Monday, 16 June 2014 01:22
·
0 Likes
·
0 Votes
·
0 Comments
·
I figured it out:
div#discuss-wrapper.discuss-view-categories .discuss-post-title, div#discuss-wrapper.discuss-view-index .discuss-post-title {
height: auto;
font-size: 18px;
line-height: 20px;
}
div#discuss-wrapper.discuss-view-categories .discuss-list .discuss-story-bd, div#discuss-wrapper.discuss-view-index .discuss-list .discuss-story-bd {
height: auto;
}
div#discuss-wrapper .discuss-searchbar {
padding: 0px;
border: none;
background: none;
}
div#discuss-wrapper .discuss-avatar.avatar-circle img {
border-radius: 0px;
-webkit-border-radius: 0px;
-moz-border-radius: 0px;
}
div#discuss-wrapper .discuss-searchbar .input-searchbar, div#discuss-wrapper .discuss-searchbar .btn-searchbar, div#discuss-wrapper .discuss-searchbar .discuss-searchbar--left, div#discuss-wrapper .discuss-searchbar .discuss-searchbar--input, div#discuss-wrapper .discuss-searchbar.narrow .discuss-searchbar--center {
display: none;
}
div#discuss-wrapper .discuss-searchbar .discuss-searchbar--center {
width: auto;
}
div#discuss-wrapper .discuss-searchbar .btn-ask {
border-radius: 0px;
-webkit-border-radius: 0px;
-moz-border-radius: 0px;
}
div#discuss-wrapper .discuss-searchbar .btn-ask {
position: absolute;
left: 0;
right: 0;
top: 0;
}
div#discuss-wrapper .discuss-searchbar:before, div#discuss-wrapper .discuss-searchbar:after {
height: 30px;
}


did the trick
·
Monday, 16 June 2014 01:47
·
0 Likes
·
0 Votes
·
0 Comments
·
Hello Jannik Laursen,

Thanks for sharing, it would be help a lot of people here.
·
Monday, 16 June 2014 10:54
·
0 Likes
·
0 Votes
·
0 Comments
·
View Full Post