DP Community, I hope all of you are doing well. I am experiencing some problems with some code in FireFox. Please go to http://tinyurl.com/brqjv3p and click on the twitter icon, does anyone know what I need to do to fix this error? Thanks in advance!
Add this somewhere to your CSS, and make sure it overwrites all previous definitions : #twtr-widget-1 { overflow: hidden; float: left; } Code (markup): What a messy code, btw!
Make sure your twtr-doc div class has a property of position: absolute. In general, if your outer div (the div that encloses the entire panel) has a property of position: relative and your inner div has a property of position: absolute, you can position the inner div with respect to the outer div by having top, bottom, left or right property. For example: .twtr-doc{ left: 5px; } will position the twtr-doc div 5px from the left relative to the outer div (with position set to relative). Hope this helps.