Center table / Listing on page

This public forum is for user-to-user discussions of ASP.NET Maker. Note that this is not support forum.
Post Reply
juvat
User
Posts: 71

Center table / Listing on page

Post by juvat »

What is the easiest way to have all listings, tables, views display centered on web browser for ASPNETMaker?


motfs
User
Posts: 258

Post by motfs »

Read the following forum topic to try: http://www.hkvforums.com/viewtopic.php?f=4&t=39386


juvat
User
Posts: 71

Post by juvat »

Thanks. I added the following to the user_styles:
.ewLayout {
margin: 0px auto;
width: 90%;
}

, but nothing seem to change so I played with it more and ended up with the following:

/BEGIN_USER_STYLES/
.ewLayout {
margin:0 px auto;
width:625px;
}
Everything looks great, except on the Printer Friendly webpage the Master-Detail Master section is centered, and the Detail section is still positioned on the left side of the webpage. When I use the browser-Print the Detail section is centered.


motfs
User
Posts: 258

Post by motfs »

Try to view HTML source to find out the element ID for the page and apply the same CSS setting for the appropriate ID.


juvat
User
Posts: 71

Post by juvat »

Thanks. Fixed after finding the elements that needed to be tamed.


Post Reply