Jump to content

Release details Text Scaling bug (+ fix)


Evil-Oatmeal

Recommended Posts

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!

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

Loading...
×
×
  • Create New...