Jump to content

Evil-Oatmeal

Members
  • Posts

    1
  • Joined

  • Last visited

Evil-Oatmeal's Achievements

  1. This bug only affects Firefox, as far as I know. Problem: When scaling the text size bigger (Ctrl + + in Fx), at +2 and higher the release information will get bumped right by the RDB logo container (because the logo container gets bigger and makes the info float to its right rather than below it) and is now not accessible with the mouse, because the tracklist has a higher z-index and its container covers the general information. Solution: Set (CSS) height: 50px; on #header_logo. This will keep the logo container from pushing the release information right when text is scaled bigger. Simple +1line fix. Instructions if someone who doesn't know wants to implements the fix: In "http://www.rolldabeats.com/css/rdb.css" Add the line "height: 50px;" In to the selector "#header_logo" #header_logo { float: left; width: 188px; margin: 0; padding: 0; }...becomes... #header_logo { float: left; width: 188px; height: 50px; margin: 0; padding: 0; } Cheers and big ups!
×
×
  • Create New...