diff --git a/public/css/npcs.styl b/public/css/npcs.styl index dae4676197..084a5c19d4 100644 --- a/public/css/npcs.styl +++ b/public/css/npcs.styl @@ -29,7 +29,8 @@ position:relative // Tour (Justin) -.tour-tour .NPC-Justin +.NPC-Justin.float-left float: left margin-right: 5px + margin-bottom: 5px .popover-navigation {clear:both;} \ No newline at end of file diff --git a/public/js/services/guideServices.js b/public/js/services/guideServices.js index ece2842998..51a05990e1 100644 --- a/public/js/services/guideServices.js +++ b/public/js/services/guideServices.js @@ -51,7 +51,7 @@ angular.module('guideServices', []). } ]; _.each(tourSteps, function(step){ - step.content = "
" + step.content + "
"; // add Justin NPC img + step.content = "
" + step.content + "
"; // add Justin NPC img }); $('.main-herobox').popover('destroy'); var tour = new Tour({ @@ -73,7 +73,7 @@ angular.module('guideServices', []). var showPopover = function(selector, title, html, placement) { if (!placement) placement = 'bottom'; $(selector).popover('destroy'); - html = "
" + html + "[Close]
"; + html = "
" + html + "
Close
"; $(selector).popover({ title: title, placement: placement,