A place for discussion about skinning and design. Before posting questions here you should review the documentation about creating skins.
i do not understand how the cms decides to show the "choose icon" dialog, or to generate the code to embed images (the page icons are nowhere in the code, not just hidden)
ok, i am understanding how the menu and theming works
i enabled the icon selection on mitchinson-earthy, and i saw that icons on a jquery superfish menu are possible
but, if this is set:
<portal:SiteMenu id="SiteMenu1" runat="server" UseTreeView="false" HideMenuOnSiteMap="false" UseSuperfish="true" Direction="Horizontal" TopLevelOnly="false"></portal:SiteMenu>
the generated html does not have the img tags, while if i set it to false, it has it
ok, so i watched in the source,
private void RenderMenu() { Menu menu; if (this.useSuperfish) { if (this.direction == "Vertical") { menu = new mojoMenuSuperfishVertical(); } else { menu = new mojoMenuSuperfish(); }
so i have to look and edit the mojoMenuSuperfish function, right?
It is not an optimal solution to manually edit and recompile the code by myself (expecially because i am a lousy c# coder), there isn't an easier way to do that?
thanks
I looked into this today and fixed the issue so it can work with superfish, it will be fixed in the next release.
Best,
Joe
awesome!
crying for happiness
Since I updated to this new version, which support the image in superfish menu. My superfish "Home" menu show a home image icon ( src="Data/SiteImages/FeatureIcons/home.gif"). How can i get rid of this icon? It breaks my meun layout.
You use the SVN version? That function is not yet enabled in the release version
By the way, in to the "page settings", under the page URL, there is the icon selection. Choose "no icon" and you are done
(text can change from what i said, as my mojoportal installation is not in english)
I was using the svn version. Unfortunately I cannot find the icon selection in the page setting. I rememered there was a such selection to choose a icon some time ago, but I really cannot find it in this version.
oh, that is because your style.css is set to hide that function
so, i think you have to go in the database, table mp_pages and put blank.gif in the row MenuImage (otherwise you will have a missing image)
Thanks,
I changed home.gif to blank.gif in the table and problem solved.