Reward Calculator page bugged again

Reward Calculator page bugged again

in Forum and Website Bugs

Posted by: Berelious.3290

Berelious.3290

The Hall of Monuments Rewards Calculator page is severely bugged. The graphical elements are skewed and prevent any links from being click-able, and some graphic elements aren’t viewable at all.

Corwin Grimjaw: Guardian (80)
Yak’s Bend Server
Crimethink [ct]

Reward Calculator page bugged again

in Forum and Website Bugs

Posted by: Ignavia.7420

Ignavia.7420

It was bugged for me yesterday afternoon. In the evening it was working. Now it’s bugged again.

Attachments:

Reward Calculator page bugged again

in Forum and Website Bugs

Posted by: Wings.5140

Wings.5140

This is still bugged and broken for me as well.

Reward Calculator page bugged again

in Forum and Website Bugs

Posted by: naqaden.5698

naqaden.5698

I just ran into this same problem (after not checking the calculator for maybe a year). I found a couple old threads on here about it with no solutions that worked for me.

So here’s my workaround. Open your browser’s inspector so you can edit the page. Open the <head> tag and edit the 3rd stylesheet link:

<link rel="stylesheet" href="https://static.staticwars.com/combo/_/yui/3.2.0/cssfonts/fonts-min.css&amp;/yui/3.2.0/cssreset/reset-min.css&amp;/yui/3.2.0/cssgrids/grids-min.css&amp;/yui/3.2.0/overlay/assets/skins/sam/overlay.css&amp;/yui/3.2.0/widget/assets/skins/sam/widget.css&amp;/yui/3.2.0/widget/assets/skins/sam/widget-stack-min.css">

I just replaced that link tag with several link tags (one for each stylesheet in the “combo”), like so:

<link rel="stylesheet" href="https://static.staticwars.com/yui/3.2.0/cssfonts/fonts-min.css">
<link rel="stylesheet" href="https://static.staticwars.com/yui/3.2.0/cssreset/reset-min.css">
<link rel="stylesheet" href="https://static.staticwars.com/yui/3.2.0/cssgrids/grids-min.css">
<link rel="stylesheet" href="https://static.staticwars.com/yui/3.2.0/overlay/assets/skins/sam/overlay.css">
<link rel="stylesheet" href="https://static.staticwars.com/yui/3.2.0/widget/assets/skins/sam/widget.css">
<link rel="stylesheet" href="https://static.staticwars.com/yui/3.2.0/widget/assets/skins/sam/widget-stack-min.css">

This only works while you stay on the page, or you have to do it again.

EDIT: it might be better to copy from pastebin

(edited by naqaden.5698)

Reward Calculator page bugged again

in Forum and Website Bugs

Posted by: naqaden.5698

naqaden.5698

This only works while you stay on the page, or you have to do it again.

Here’s a greasemonkey script I slapped together for those who get tired of editing the stylesheet link every time.

Reward Calculator page bugged again

in Forum and Website Bugs

Posted by: Berelious.3290

Berelious.3290

The page is still bugged. Ignavia’s screenshot is dead on what the initial page shows, and any character page is also severely skewed.

Corwin Grimjaw: Guardian (80)
Yak’s Bend Server
Crimethink [ct]

Reward Calculator page bugged again

in Forum and Website Bugs

Posted by: Sethren.8472

Sethren.8472

Page still bugged for me. I have tried in Chrome, Opera, and Firefox. All show the same error message as Ignavia’s screenshot.

Chimeras Family – Korvaseth (Mes), Sethren (Necro)
Sea of Sorrows

Reward Calculator page bugged again

in Forum and Website Bugs

Posted by: Pat Cavit.9234

Pat Cavit.9234

Web Programming Lead

Next

Yikes, sorry about that. I’ll take a look at this.

Reward Calculator page bugged again

in Forum and Website Bugs

Posted by: Pat Cavit.9234

Previous

Pat Cavit.9234

Web Programming Lead

Next

Fix deployed, http://hom.guildwars2.com looks fine to me. Anybody confirm?

Reward Calculator page bugged again

in Forum and Website Bugs

Posted by: Gilj.6304

Gilj.6304

Thanks, it’s fixed.

Reward Calculator page bugged again

in Forum and Website Bugs

Posted by: StinVec.3621

StinVec.3621

Looks good to me.

One other issue though:

When clicking on one of the individual point rewards, clicking one will raise a page mask and you can cycle through the images of the different rewards.

However, clicking the close (X) button only hides the mask.

The image and functional previous/next arrows remain and cannot be dismissed without refreshing the entire page and entering your character name again to reload the calculator.

Attachments:

| [“I’d really like this…” — Resource for Gifting Strangers] |
| [Free Ports For All “Not So Secret” JP Needs (and 1st Try Dive Tips)] |
| [Classic Thread: “all is vain”] |

Reward Calculator page bugged again

in Forum and Website Bugs

Posted by: Berelious.3290

Berelious.3290

Much better now, thank you!

Corwin Grimjaw: Guardian (80)
Yak’s Bend Server
Crimethink [ct]

Reward Calculator page bugged again

in Forum and Website Bugs

Posted by: Dimos Avergis.1864

Dimos Avergis.1864

Fix deployed, http://hom.guildwars2.com looks fine to me. Anybody confirm?

U guys realy need to test more…. like StinVec said

Looks good to me.

One other issue though:

When clicking on one of the individual point rewards, clicking one will raise a page mask and you can cycle through the images of the different rewards.

However, clicking the close (X) button only hides the mask.

The image and functional previous/next arrows remain and cannot be dismissed without refreshing the entire page and entering your character name again to reload the calculator.

Still a broken Website (even if it looks fine now)

tested in Firefox 32 and IE 11, both same issue

Reward Calculator page bugged again

in Forum and Website Bugs

Posted by: Pat Cavit.9234

Previous

Pat Cavit.9234

Web Programming Lead

The HOM is old & not heavily used, so it doesn’t get a lot of attention. Sorry about that!

If you do open that modal and get stuck you should be able to just refresh via the F5 key, no need to re-enter your character name.

Reward Calculator page bugged again

in Forum and Website Bugs

Posted by: Dimos Avergis.1864

Dimos Avergis.1864

The HOM is old & not heavily used, so it doesn’t get a lot of attention. Sorry about that!

If you do open that modal and get stuck you should be able to just refresh via the F5 key, no need to re-enter your character name.

LOL.. okay..

I had no time to test it atm but I guess something like this should do it:

//call a function on the buttonclick on the X so add
onclick=“toggle(item-overlay)”

//and add this to the scriptfile/scriptlines

function toggle(obj) {
var el = document.getElementById(obj);
if ( el.style.display != ‘none’ ) {
el.style.display = ‘none’;
}
else {
el.style.display = ’’;
}
}