hey, twart. I know how to solve your problem.
1. You need to input title text into the title of widgets.
2. Edit the CSS code in appearance->editor->style.css
Find the following CSS codes:
.input {
display:block;
background:#FFFFFF;
width:380px;
border-radius:5px;
height:27px;
border:1px solid #E0E0E0;
overflow:hidden;
margin:15px auto;
box-shadow:0 2px 3px #f5f5f5 inset;
}
Change them to the following codes:
.input {
display:block;
background:#FFFFFF;
width:380px;
border-radius:5px;
height:27px;
border:1px solid #E0E0E0;
overflow:hidden;
margin:15px auto;
box-shadow:0 2px 3px #f5f5f5 inset;
max-width:100%;
}
You can take a try with the steps above, hope this helps.