Images on profile tabs - is it possible?
Design and Skin Customization
iamtimbo:
@claygordon Don't hold your breath! I'm learning my way through this all so slowly!
I'd already found the profile_menu.tpl, which seems to use a foreach loop to go throug all active tab, and then label them with their respective $tab.label . I can't tell where tab.label is set (yet). I think that means that it should be possible to substitute an image, but taht it would be the same image for each tab, which is not what I'm after.
@claygordon Don't hold your breath! I'm learning my way through this all so slowly!
I'd already found the profile_menu.tpl, which seems to use a foreach loop to go throug all active tab, and then label them with their respective $tab.label . I can't tell where tab.label is set (yet). I think that means that it should be possible to substitute an image, but taht it would be the same image for each tab, which is not what I'm after.
I had this issue in another template. You actually do a test inside the foreach loop to select the one tab you want to modify.
if tab_name != the tab we're looking for
do the default
else
modify the tab
endif