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

Got something cool to share with AppGini users? Feel free to post it here!
Post Reply
User avatar
ronwill
Veteran Member
Posts: 228
Joined: 2015-08-08 10:12
Location: Cheltenham UK +Weatherford USA

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

Post by ronwill » 2019-11-12 23:56

For any newbies to AppGini:
Tips_help_01.jpg
Tips_help_01.jpg (228.43 KiB) Viewed 2354 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
Ron - Gloucestershire, UK: AppGini Pro V 23.15 Rev 1484 - LOVING IT!
Plugins: Mass Update + Search Page Maker + Summary Reports + Calendar + Messages
Bizzworxx: AppGiniHelper + Inline Detail View
Alejandro Landini: To-Do List + MPI + TV Field Editor
Other: Udemy Course

Post Reply