Jump to content
8 minutes ago, Danielh90 said:

Hello I'm working with bootstrap and I have a message input in a panel. My issue is that when you resize the message input it expands out of the panel. How do I fix this?59aa34cf7dfed_ScreenShot2017-09-01at11_29_05PM.jpg.6e55652fde42927f1c1271b6751b6d3a.jpg

Also, have you set your message input max-width to 100%?

Link to comment
https://linustechtips.com/topic/829853-how-do-i-fix-this/#findComment-10382578
Share on other sites

Link to post
Share on other sites

1 minute ago, Marty88 said:

Can you post your HTML for that area please as well as any css applied to that area as well

	<div class="col-md-3 push-left">
			<div class="panel panel-info">
			  <div class="panel-heading text-center">Post Frontend Notes</div>
			  <div class="panel-body">
			   <textarea class="form-control frontend_notes" rows="4" id="comment"></textarea>
			   <div class="space_2" style="margin: 10px"></div>
			   <button class="btn btn-large btn-primary">Post Notes</button>
			  </div>

all of the css is bootstrap 

Link to comment
https://linustechtips.com/topic/829853-how-do-i-fix-this/#findComment-10382588
Share on other sites

Link to post
Share on other sites

36 minutes ago, Danielh90 said:

	<div class="col-md-3 push-left">
			<div class="panel panel-info">
			  <div class="panel-heading text-center">Post Frontend Notes</div>
			  <div class="panel-body">
			   <textarea class="form-control frontend_notes" rows="4" id="comment"></textarea>
			   <div class="space_2" style="margin: 10px"></div>
			   <button class="btn btn-large btn-primary">Post Notes</button>
			  </div>

all of the css is bootstrap 

Try changing this

 <textarea class="form-control frontend_notes" rows="4" id="comment"></textarea>

To

 

<textare class="form-control frontend_notes" rows="4" id="comment" style="max-width : 100%"></textarea>

 

see if setting that styling works

Link to comment
https://linustechtips.com/topic/829853-how-do-i-fix-this/#findComment-10382681
Share on other sites

Link to post
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now

×