Reputation: 147
I am trying to increase the width of textbox(input) which has applied bootstrap 3 styling in my project. The size is increasing in the Link but when I try to run this code in Visual Studio designer it is nor increasing the width of the text box.
Upvotes: 0
Views: 813
Reputation:
In a default Asp Mvc web project they add a default stylesheet file in the Content/ folder called Site.css
This file has the style
input,
select,
textarea {
max-width: 280px;
}
This is for the horizontal form in the default t4 templates.
If you remove that it should work as expected
Upvotes: 1