Page 1 of 1

Easy Mod for: Detail view title + home.php buttons

Posted: 2019-11-12 23:56
by ronwill
For any newbies to AppGini:
Tips_help_01.jpg
Tips_help_01.jpg (228.43 KiB) Viewed 2854 times
Amend home.php standard button height:

Code: Select all

<style>
	.panel-body-description{
		margin-top: 10px;
		height: 100px; <-- Change to auto -->
		overflow: auto;
	}
	.panel-body .btn img{
		margin: 0 10px;
		max-height: 32px;
	}
</style>
My example button code:

Code: Select all

<style>
	
	.panel{
		margin-top: 10px;
		height: auto;
		overflow: auto;  
			background: #fffff;
			padding: 5px;
		  border: 2px solid #337ab7;
		  border-radius: 10px 50px 60px 10px;
		  	}		
			
	.panel-body-description{
		margin-top: 10px;
		height: auto;
		overflow: auto;
			background: #fffff;
			padding: 0px;
		  border: 0px solid #337ab7;
		  border-radius: 0px 0px 55px 5px;
		  	}		
		  
	.panel-body .btn img{
		margin: 0 10px;
		max-height: 32px;
		  }
		  
	.panel-body .btn-block{
			background: #fffff;
			padding: 5px;
		  border: 2px solid #337ab7;
		  border-radius: 10px 50px 0px 0px;
		  }	

</style>
Cheers, Ron