11202 Users Online

Bug Report Forums

Report bugs and errors to the Flight Rising development team.
TOPIC | Official Layout & Dark Mode Bugs Thread
I get a similar issue to Sialias when feeding my dragons. This happens to me on mobile(Chrome), and I just saw it happen to me on my laptop in Opera GX. I know my Opera is up to date, not sure about Chrome on mobile.

I haven't been using the selective feeding, just the normal feeding at the top, and the tooltip appears right where it tells you how much bugs and meat were used. So my dragons are eating my meat and bugs, but I don't know how much.

Tapping/clicking on other areas does not get rid of the tooltip. So it seems to be happening when feeding in general.

Here is the picture I got on my laptop.

I get a similar issue to Sialias when feeding my dragons. This happens to me on mobile(Chrome), and I just saw it happen to me on my laptop in Opera GX. I know my Opera is up to date, not sure about Chrome on mobile.

I haven't been using the selective feeding, just the normal feeding at the top, and the tooltip appears right where it tells you how much bugs and meat were used. So my dragons are eating my meat and bugs, but I don't know how much.

Tapping/clicking on other areas does not get rid of the tooltip. So it seems to be happening when feeding in general.

Here is the picture I got on my laptop.

Sig%202.0%20A.pngSig%202.0%20C.pngSig%202.0%20E.png
Sig%202.0%20F.pngSig%202.0%20H.pngSig%202.0%20J.png

[quote name="Sialias" date="2026-07-24 04:15:31" ] Not sure if these are caused by the same thing as described above, but there are two areas of the site I frequently have tooltip issues with on mobile (chrome, android): 1. Selectively feeding dragons. When I hit feed and then seafood, the tooltip for the seafood button appears over the feed again button and doesn't go away if I tap the screen elsewhere. This makes it difficult to hit feed again without zooming in significantly. (The tooltip for the other food types also likely do something similar, seafood is just what I hit first) [img]https://i.ibb.co/21Mt0rkP/Screenshot-20260724-070407.jpg[/img] [/quote] Thank you for the reports @Sialias! (also pinging @blazebrem for a related report) The first issue relating to sticky tooltips while feeding should now be been fixed. We are going to have to fix many of this sorts of issues one-by-one. Most of these will be handled when specific pages are converted into their new responsive layouts, but we'll make quick corrections like the one above when we can. --- [quote name="Sialias" date="2026-07-24 04:15:31" ] 2. Adding dragons or items in crossroads. When selecting a dragon or item in one of the top 2 rows, the tooltip for that dragon/item completely covers the send crossroads button and doesn't go away unless another item is selected, again doesn't disappear when tapping elsewhere. The third row also makes the tooltip mostly cover the button. [img]https://i.ibb.co/NgmkRMmK/Screenshot-20260724-070732.jpg[/img] [/quote] We're still working on this one, as the cause of the bug is a little more complicated and there is a risk of making things worse without some extra testing.
Sialias wrote on 2026-07-24 04:15:31:
Not sure if these are caused by the same thing as described above, but there are two areas of the site I frequently have tooltip issues with on mobile (chrome, android):

1. Selectively feeding dragons. When I hit feed and then seafood, the tooltip for the seafood button appears over the feed again button and doesn't go away if I tap the screen elsewhere. This makes it difficult to hit feed again without zooming in significantly. (The tooltip for the other food types also likely do something similar, seafood is just what I hit first)

Screenshot-20260724-070407.jpg

Thank you for the reports @Sialias!

(also pinging @blazebrem for a related report)

The first issue relating to sticky tooltips while feeding should now be been fixed. We are going to have to fix many of this sorts of issues one-by-one. Most of these will be handled when specific pages are converted into their new responsive layouts, but we'll make quick corrections like the one above when we can.

---
Sialias wrote on 2026-07-24 04:15:31:

2. Adding dragons or items in crossroads. When selecting a dragon or item in one of the top 2 rows, the tooltip for that dragon/item completely covers the send crossroads button and doesn't go away unless another item is selected, again doesn't disappear when tapping elsewhere. The third row also makes the tooltip mostly cover the button.

Screenshot-20260724-070732.jpg

We're still working on this one, as the cause of the bug is a little more complicated and there is a risk of making things worse without some extra testing.
~ Flight Rising Engineering Team ~
- Do you want to hear what I said again? Hoot hoot!

Flight Rising
Knowledge Base

Flight Rising Rules & Policies
[quote name="Xacian" date="2026-07-28 19:58:25" ] hope this is the right place to note this, the "breeding" achievements tab doesn't let you view any of the in-between pages unless you manually type in what page you're wanting to go to? this seems inconsistent with other similar pages where they let you move one page forwards/backwards if there's more to go in that direction ! images of issue ^ on page 5, only prompted to either type in page manually or skip to the end ^ page 11, ditto ^ comparison to the hoard page, which allows you to move 1 page forwards/backwards [/quote] Thank you for the report @Xacian! This is a known issue with the pagination on the Achievements page which, unfortunately, has been with us since it launched (prior to the responsive design update). We recently began work on a fix, but it'll require a non-standard pagination layout and code unique to this page. Depending on other priorities, it may launch soon or wait quite some time before we can run it through our internal code review process. [size=5]Technical details for the curious[/size] Usually we sort records using information that's very easy to query, like name, treasure value, or item ID. Sorting all possible records and then slicing them into pages is simple, fast, and behaves pretty much the same way whether you're paginating dragons, familiars, items, or whatever. Achievements, however, are sorted in a very complicated way which factors in each achievement's claim state (ready to claim, not ready to claim, already claimed) and current progress (complete, started, no started). This information differs per player and changes constantly. It can't easily be cached (saved) for easy reference, so you have to re-calculate all the achievements to build out the pages. Our standard pagination code doesn't really know how to handle this, so you get the current semi-functional result. The fix will likely use a different pagination solution, similar to what you see when browsing your PMs - although it'll include the option to jump to specific pages still by typing in a number.
Xacian wrote on 2026-07-28 19:58:25:
hope this is the right place to note this, the "breeding" achievements tab doesn't let you view any of the in-between pages unless you manually type in what page you're wanting to go to? this seems inconsistent with other similar pages where they let you move one page forwards/backwards if there's more to go in that direction !

images of issue

^ on page 5, only prompted to either type in page manually or skip to the end


^ page 11, ditto




^ comparison to the hoard page, which allows you to move 1 page forwards/backwards

Thank you for the report @Xacian!

This is a known issue with the pagination on the Achievements page which, unfortunately, has been with us since it launched (prior to the responsive design update).

We recently began work on a fix, but it'll require a non-standard pagination layout and code unique to this page. Depending on other priorities, it may launch soon or wait quite some time before we can run it through our internal code review process.

Technical details for the curious

Usually we sort records using information that's very easy to query, like name, treasure value, or item ID. Sorting all possible records and then slicing them into pages is simple, fast, and behaves pretty much the same way whether you're paginating dragons, familiars, items, or whatever.

Achievements, however, are sorted in a very complicated way which factors in each achievement's claim state (ready to claim, not ready to claim, already claimed) and current progress (complete, started, no started). This information differs per player and changes constantly. It can't easily be cached (saved) for easy reference, so you have to re-calculate all the achievements to build out the pages.

Our standard pagination code doesn't really know how to handle this, so you get the current semi-functional result.

The fix will likely use a different pagination solution, similar to what you see when browsing your PMs - although it'll include the option to jump to specific pages still by typing in a number.
~ Flight Rising Engineering Team ~
- Do you want to hear what I said again? Hoot hoot!

Flight Rising
Knowledge Base

Flight Rising Rules & Policies
The thing is up at the upper left corner so I can't feed my dragons.
https://media.discordapp.net/attachments/1179288983713366109/1534220279574691912/image.png?ex=6a73fe3b&is=6a72acbb&hm=c67993fa3ee5b219c31dc34b76f9fc7e3260e5d7e2e35a9365127f9769a01c4b&=&format=webp&quality=lossless&width=1536&height=735
[quote name="mercecol000" date="2026-08-04 21:17:33" ] The thing is up at the upper left corner so I can't feed my dragons. https://media.discordapp.net/attachments/1179288983713366109/1534220279574691912/image.png?ex=6a73fe3b&is=6a72acbb&hm=c67993fa3ee5b219c31dc34b76f9fc7e3260e5d7e2e35a9365127f9769a01c4b&=&format=webp&quality=lossless&width=1536&height=735 [/quote] Thank you for the screenshot, @mercecol000! Unless the screenshot itself was edited, it looks like that page is being scaled/zoomed. Usually, scaling is not a problem. But different browsers use different scaling logic. In some cases, a browser may have multiple scale/zoom settings that combine in unexpected ways to mess up layouts. The page you reported hasn't actually been converted to a responsive layout yet, and the popup code has not recently changed. Since our code hasn't changed, I suspect this is either a browser setting issue or perhaps your browser updated and change some setting. Please set your browser to its default zoom/scale, refresh the page, and give it another try.

Thank you for the screenshot, @mercecol000!

Unless the screenshot itself was edited, it looks like that page is being scaled/zoomed.

Usually, scaling is not a problem. But different browsers use different scaling logic. In some cases, a browser may have multiple scale/zoom settings that combine in unexpected ways to mess up layouts.

The page you reported hasn't actually been converted to a responsive layout yet, and the popup code has not recently changed. Since our code hasn't changed, I suspect this is either a browser setting issue or perhaps your browser updated and change some setting.

Please set your browser to its default zoom/scale, refresh the page, and give it another try.
~ Flight Rising Engineering Team ~
- Do you want to hear what I said again? Hoot hoot!

Flight Rising
Knowledge Base

Flight Rising Rules & Policies
i have also been experiencing the issue reported by mercecol000, which i first noticed today. not a problem on mobile but is a problem on desktop using a chrome browser, notably on PM/forum pages. i was able to normally use the same features (including the emoji popup and post preview) yesterday. i have not updated anything on my end between this happening, and the issue persisted regardless of zoom setting. this issue is also being discussed in the bug report forums here.
i have also been experiencing the issue reported by mercecol000, which i first noticed today. not a problem on mobile but is a problem on desktop using a chrome browser, notably on PM/forum pages. i was able to normally use the same features (including the emoji popup and post preview) yesterday. i have not updated anything on my end between this happening, and the issue persisted regardless of zoom setting. this issue is also being discussed in the bug report forums here.
nuNUfJQ.png 06xk8gV.png
sh5xjiu.png
LCqISMP.png
tyEuRXe.png
0MTaj3d.png
rix3ppo.png
EWGvL5K.png
Np4NxIR.png
5hF3FGk.png
pWWj5cA.png
nCuRkcV.png
My browser is at default zoom, never had an issue before.

The pop up boxes for feeding and breeding dragons are all showing off in the corner and I can't do anything. Legit cannot breed my dragons now and my food bonus is going to be lost by tomorrow cause I can only feed plants and seafood currently.
Multiple other people are having this problem. This isn't a client side issue, it's a bug that I am very surprised it's apparently not being looked at and is instead being written off as a zoom/scale issue.
My browser is at default zoom, never had an issue before.

The pop up boxes for feeding and breeding dragons are all showing off in the corner and I can't do anything. Legit cannot breed my dragons now and my food bonus is going to be lost by tomorrow cause I can only feed plants and seafood currently.
Multiple other people are having this problem. This isn't a client side issue, it's a bug that I am very surprised it's apparently not being looked at and is instead being written off as a zoom/scale issue.
Is not edited, zoomed, or even scaled. If what you said that the browser is the issue, how do I set my browser to its default zoom/scale?
Is not edited, zoomed, or even scaled. If what you said that the browser is the issue, how do I set my browser to its default zoom/scale?
Not sure if this has been reported before, but didn't see it on the current known issues list so:



On my iPhone 12, Safari (iOS 26.5.2) none of the responsive pages fit width wise. I always have to scroll left or right to see the whole page.

If I try to zoom out more, it brings me to the "all tabs" view that Safari has.

But it looks good on Chrome on my phone, so I assume it's a Safari only issue.

It's been occuring ever since the Responsive Layout update (I just thought that this was what it was meant to be this whole time and have been avoiding FR on my phone ever since).
Not sure if this has been reported before, but didn't see it on the current known issues list so:



On my iPhone 12, Safari (iOS 26.5.2) none of the responsive pages fit width wise. I always have to scroll left or right to see the whole page.

If I try to zoom out more, it brings me to the "all tabs" view that Safari has.

But it looks good on Chrome on my phone, so I assume it's a Safari only issue.

It's been occuring ever since the Responsive Layout update (I just thought that this was what it was meant to be this whole time and have been avoiding FR on my phone ever since).
tumblr_pur6ag4hQE1ta9vl4o7_r5_500.gif
On the updated marketplace page, on tablet mode specifically, the tooltip for the 'game database', 'in hosrd/vault', on a dragon', 'on a dragon's profile', and 'applied to account' icons escape the side of the page and cause flickering.

Also, on my device (Samsung Note 9, both on Firefox and on Opera), sometimes the contents of the offer boxes overflow, leading to layout weirdness. This appears to be specific to tablet mode as well.

On the updated marketplace page, on tablet mode specifically, the tooltip for the 'game database', 'in hosrd/vault', on a dragon', 'on a dragon's profile', and 'applied to account' icons escape the side of the page and cause flickering.

Also, on my device (Samsung Note 9, both on Firefox and on Opera), sometimes the contents of the offer boxes overflow, leading to layout weirdness. This appears to be specific to tablet mode as well.

UbKoyZq.png
. . .
5kODyPT.gif
x X x X x X x X x X x X x X x
7YlUtCc.png
. . .]
qiTymVx.png tumblr_ngzrrxU1xy1tfzajgo8_100.png
. . .]