![]() |
Codeigniter 4 debug bar header link "disappeared" - color won't change - Printable Version +- CodeIgniter Forums (https://forum.codeigniter.com) +-- Forum: CodeIgniter 4 (https://forum.codeigniter.com/forumdisplay.php?fid=28) +--- Forum: CodeIgniter 4 Support (https://forum.codeigniter.com/forumdisplay.php?fid=30) +--- Thread: Codeigniter 4 debug bar header link "disappeared" - color won't change (/showthread.php?tid=90624) |
Codeigniter 4 debug bar header link "disappeared" - color won't change - xanabobana - 04-11-2024 I am working on migrating my website from CI3 to CI4. The CI4 debug bar seems like it's having a conflict with CSS somewhere but I can't figure it out. Here is the example CI4 page: https://dev.vmc.w3.uvm.edu/xana/CI4/ If you click on the Codeigniter flame on the bottom right it pulls up the debug bar. However, the menu items are not visible and the close button on the right is stretched out. I tried updating the CSS to see if that would change the link color, but it did not. So I'm not sure what is going on? Code: #debug-bar .ci-label a { Any ideas on getting the toolbar showing correctly? Thanks! RE: Codeigniter 4 debug bar header link "disappeared" - color won't change - kenjis - 04-11-2024 First, upgrade to CI v4.4.8 and see what happens. RE: Codeigniter 4 debug bar header link "disappeared" - color won't change - xanabobana - 04-12-2024 I figured it out by methodically commenting 4000 lines of our CSS to narrow it down. Looks like it was the code for the h1 moving the links. I'm not sure the best way to go about fixing this, as I don't really want to update the CI4 code and we have a lot of h1's through out our very large site. h1{ font-size:1.8em; font-weight:400; font-family:'Open Sans', Sans-serif; text-transform: uppercase; color: #464646; background-color: #f4f9eb; padding: 1.4em 0 1.4em 20px; margin: 0 0 1em; } RE: Codeigniter 4 debug bar header link "disappeared" - color won't change - kenjis - 04-12-2024 Try this. https://github.com/codeigniter4/CodeIgniter4/pull/8772 |