Skip to content
This repository has been archived by the owner on Mar 2, 2022. It is now read-only.

Commit

Permalink
css fixes index.jsp
Browse files Browse the repository at this point in the history
  • Loading branch information
aquillano committed Jun 30, 2010
1 parent be87e92 commit fa95cf4
Show file tree
Hide file tree
Showing 2 changed files with 20 additions and 12 deletions.
24 changes: 16 additions & 8 deletions war/css/meetupnow.css
Expand Up @@ -42,16 +42,20 @@
}
a,
a:link,
a:visited,
a:hover {
color: #f2f2f2;
a:visited
{
color: #2175B1;
font-weight: bold;
text-decoration: none;
cursor: hand;
cursor: pointer;
}
a:hover {
color: #2175B1;
font-weight: bold;
text-decoration: underline;
cursor: hand;
cursor: pointer;
}
/* new clearfix */
.clearfix:after {
Expand Down Expand Up @@ -111,16 +115,20 @@ body {
}
#header_usernav li a,
#header_usernav li a:link,
#header_usernav li a:visited,
#header_usernav li a:hover {
color: #f2f2f2;
#header_usernav li a:visited
{
color: #2175B1;
font-weight: bold;
text-decoration: none;
cursor: hand;
cursor: pointer;
}
#header_usernav li a:hover {
color: #2175B1;
font-weight: bold;
text-decoration: underline;
cursor: hand;
cursor: pointer;
}
#wrap {
min-height: 100%;
Expand Down Expand Up @@ -176,10 +184,10 @@ body {
#searchContext {
height: 50px;
width: 100%;
padding: 12px 0;
padding: 24px 0;
}
#search {

padding: 0 0 10px 0;
}
.element {
float: left;
Expand Down
8 changes: 4 additions & 4 deletions war/index.jsp
Expand Up @@ -132,9 +132,9 @@
String GEOCODE_API_URL = "http://maps.google.com/maps/api/geocode/json?latlng=" + Lat + "," + Lon +"&sensor=true";
APIresponse = sg.submitURL(GEOCODE_API_URL);
%>var geocode = <%=APIresponse.getBody().toString()%>
var location = geocode.results[0].address_components[2].long_name;
var location = 'Events near ' + geocode.results[0].address_components[2].long_name;
$('#listTitleLoc').append(location);
$('#searchResultsHeading').append(location);
use_everywhere(data);
}
Expand Down Expand Up @@ -182,11 +182,11 @@
</div> <!-- end .submit -->
</form>
</div> <!-- end #search -->
<span class="subtitle" style="clear:both;"><a href="/search.jsp">Go to Topic Search</a></span>
<span style="clear:both;"><a href="/search.jsp">Go to Topic Search</a></span>
</div> <!-- end #searchContext -->
<div id="mn_geoListContext">
<div id="mn_geoListHeader">
<span class="listTitle">Results near <div id="listTitleLoc"></div></span>
<span id="searchResultsHeading" class="listTitle"></span>
</div><!-- mn_geoListHeader -->
<div id="mn_geoListBody">
Expand Down

0 comments on commit fa95cf4

Please sign in to comment.