- Footer is more positioned in the bottom

This commit is contained in:
Paulo Gustavo Veiga
2012-09-12 23:29:57 -03:00
parent 022e3d982a
commit 4c988d4ae2
8 changed files with 21 additions and 14 deletions

View File

@@ -1,7 +1,7 @@
<%@ taglib prefix="spring" uri="http://www.springframework.org/tags" %>
<%@taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c" %>
<div class="row" id="footer">
<div id="footer">
<div class="span1 offset3">
<a href="https://twitter.com/share" class="twitter-share-button" data-via="wisemapping"
data-related="wisemapping">Tweet</a>

View File

@@ -40,7 +40,7 @@
title="<spring:message code="LOGOUT"/>"><spring:message code="LOGOUT"/></a></span>
</div>
</c:when>
<c:when test="${param.removeSignin!=true}">
<c:when test="${!param.removeSignin && !requestScope.removeSignin}">
<div id="headerActions">
<spring:message code="ALREADY_A_MEMBER"/>
<span><a href="c/login" title="<spring:message code="SIGN_IN"/>">
@@ -82,4 +82,3 @@
</script>

View File

@@ -11,7 +11,7 @@
});
</script>
<div id="row-fluid">
<div id="row">
<div class="span1"></div>
<div class="span5" style="margin-top: 20px">
<h1><spring:message code="WELCOME_TO_WISEMAPPING"/></h1>
@@ -55,7 +55,7 @@
</div>
</div>
<div class="row-fluid">
<div class="row">
<div id="register" class="span12">
<b><spring:message code="NOT_READY_A_USER"/></b>
<spring:message code="NOT_READY_A_USER_MESSAGE"/>

View File

@@ -208,8 +208,9 @@
</div>
<div id="map-table">
<table class="table" id="mindmapListTable"></table>
<div id="tableFooter" class="form-inline"></div>
</div>
<div id="tableFooter" class="form-inline"></div>
</div>
<div class="span1" style="padding-top:25px">
<c:if test="${requestScope['google.ads.enabled']}">

View File

@@ -6,6 +6,7 @@
<%@ taglib uri="http://tiles.apache.org/tags-tiles" prefix="tiles" %>
<tiles:importAttribute name="title" scope="request"/>
<tiles:importAttribute name="details" scope="request"/>
<tiles:importAttribute name="removeSignin" scope="request" ignore="true"/>
<html>
<head>
@@ -32,7 +33,9 @@
</head>
<body>
<jsp:include page="header.jsp"/>
<jsp:include page="header.jsp">
<jsp:param name="removeSignin" value="${requestScope.removeSignin}"/>
</jsp:include>
<div class="pageBody row-fluid">
<div class="span2"></div>
@@ -44,3 +47,4 @@
<jsp:include page="footer.jsp"/>
</body>
</html>