View Full Version : Missing Viewer Control (Style Picker) button
ekrizo
Sep-24-2009, 04:13 AM
I am trying to use the Viewer controlled viewing mode to allow my customers to choose their viewing styles. My problem is that the drop down button has disappeared. It can be seen on this page: http://www.lastingsnapshots.com/Other/Families-and-Children/6109963_K2SLb#384029928_QQd4b
I am guessing I probably messed it up somehow with other code, so I would appreciate any suggestions you might have.
Thanks,
Erin
Smugmug - ejkrizo
denisegoldberg
Sep-24-2009, 05:42 AM
You hid it with this statement:
#breadcrumb {visibility: hidden;}
You should not hide the full breadcrumb - use this instead:
#breadCrumbTrail {visibility: hidden;}
Are you aware that using visibility: hidden; reserves space on the screen for the non-displayed item? You would be better served by using
#breadCrumbTrail {display: none;}
Because you've hidden the breadcrumb and not replaced it with a gallery title, viewers of your site have no idea what gallery they are viewing. Please see Are you really sure you want to hide the breadcrumb? Think of your viewers! (http://www.dgrin.com/showthread.php?t=111484)
Also - are you aware that the colors you have chosen for the text on your site is just about invisible? You really should choose a lighter (or brighter) color for the text. Yes, I know, it matches the background quite nicely, and it might be fine on a calibrated monitor - but it is pretty much invisible on a laptop.
--- Denise
vBulletin® v3.8.5, Copyright ©2000-2012, Jelsoft Enterprises Ltd.