well i cant help you with the lables. but i can with the wooden folder and wooden background. Also, changing the background of the folder changes the background of the app switcher below. Just FYI there. I use iFile but Iphone Browser works also.
Thank you... I thought I'd track down the problem with the dock labels, turned everything off and they came back. So, I re-enabled SuaveHD and it was the only thing enabled and there were no dock icon labels
i downloaded my SuaveHD from here: http://suavehd.xengi.org/
There may be a string that changes this in the theme's info.plist file, or maybe some other factor. But that's weird, I never knew it disabled them. Maybe try checking the plist?
Edit: yeah, I'm pretty sure that's what it is. In my info.plist there's a line that says <key>UndockedIconLabelStyle<key> and then a <string> that specifies the color and font size. I assume this changes the normal icons not in the dock. Try adding these two lines into your info.plist
<key>DockedIconLabelStyle</key>
<string>color: rgba(255,255,255,0.9); font-size: 10;</string>
The 0.9 changes opacity, AFAIK, and might need to be set to 1 for full white text.
That was it...
The line was already there, the color was set to "transparent"
Thanks!
There may be a string that changes this in the theme's info.plist file, or maybe some other factor. But that's weird, I never knew it disabled them. Maybe try checking the plist?
Edit: yeah, I'm pretty sure that's what it is. In my info.plist there's a line that says <key>UndockedIconLabelStyle<key> and then a <string> that specifies the color and font size. I assume this changes the normal icons not in the dock. Try adding these two lines into your info.plist
<key>DockedIconLabelStyle</key>
<string>color: rgba(255,255,255,0.9); font-size: 10;</string>
The 0.9 changes opacity, AFAIK, and might need to be set to 1 for full white text.