07/17/2018 at 2:41 pm
#467714
Keymaster
@ Jess
Well, it looks like you made it larger by adding the following CSS:
#cn-circled input#cn-search-input {
height: 32px !important;
font-size: 18px !important;
line-height: normal !important;
}
#cn-circled input#cn-search-submit {
height: 32px !important;
}
#cn-circled span.cn-search {
margin-bottom: 16px !important;
text-align: center !important;
display: block !important;
float: none !important;
}
I suggest editing this CSS to make it the size you wish. For example, the font-size of the “share” text is 18px, a left/right margin of 10px and a top/bottom padding of 10px. So changing it to this would be you closer:
#cn-circled input#cn-search-input {
height: auto !important;
font-size: 18px !important;
line-height: normal !important;
margin: 10px 0 !important;
padding: 10px !important;
}
#cn-circled input#cn-search-submit {
height: 43px !important;
margin: 10px 0 !important;
}
#cn-circled span.cn-search {
margin-bottom: 16px !important;
text-align: center !important;
display: block !important;
float: none !important;
}
Hope that helps!
