aboutsummaryrefslogtreecommitdiffstats
path: root/view
diff options
context:
space:
mode:
Diffstat (limited to 'view')
-rw-r--r--view/jot_geotag.tpl2
-rw-r--r--view/theme/duepuntozero/style.css4
2 files changed, 5 insertions, 1 deletions
diff --git a/view/jot_geotag.tpl b/view/jot_geotag.tpl
index 4145c3111..b0f71e73b 100644
--- a/view/jot_geotag.tpl
+++ b/view/jot_geotag.tpl
@@ -1,7 +1,7 @@
if(navigator.geolocation) {
navigator.geolocation.getCurrentPosition(function(position) {
- $('#jot-coord').val(position.coords.latitude + position.coords.longitude);
+ $('#jot-coord').val(position.coords.latitude + ' ' + position.coords.longitude);
$('#profile-nolocation-wrapper').show();
});
}
diff --git a/view/theme/duepuntozero/style.css b/view/theme/duepuntozero/style.css
index dafc24360..72e0be00c 100644
--- a/view/theme/duepuntozero/style.css
+++ b/view/theme/duepuntozero/style.css
@@ -1826,3 +1826,7 @@ a.mail-list-link {
/* end from defautlt */
+.fn {
+ padding: 0px 0px 5px 0px;
+ font-size: 120%;
+} \ No newline at end of file