I needed to fix this on version 2.6.6 on JBoss portal, here is how I solved it.
Remove padding on div.login-container and div.login-content in
jboss-portal.sar\portal-core.war\css\login.css
div.login-container div.login-content {
| background-image: url( ../images/modal/login-content-bg.gif );
| background-position: top left;
| background-repeat: repeat-x;
| width: 255px;
| font-weight: bold;
| padding: 0px 0 0 0;
| text-align: right;
| }
Set appropriate width on buttons in
jboss-portal.sar\portal-server.war\login.jsp
<input style="width:75px;" type="button" name="cancel"
value="<%= rb.getString("LOGIN_CANCEL") %>"
class="cancel-button"
onclick="window.parent.hideContentModal('login-modal');"/>
| <input style="width:75px;" type="submit" name="login"
value="<%= rb.getString("LOGIN_SUBMIT") %>"
class="login-button"/>
View the original post :
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4200093#...
Reply to the post :
http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&a...