Question regarding image properties.

Last post 08-30-2004, 4:03 AM by Digitalmafia. 2 replies.
Sort Posts: Previous Next
  •  08-01-2004, 7:06 PM 1408

    Question regarding image properties.

    Hi,

    Quick question.
    I want to replace the menu icons (for home-upload ect).  I know where the default images are and how to change the folder to my own ect. but where do I set the property for the icons image size (example:thumbnail.gif).  Am I missing a property such as ShowImageIconThumbnail.width (made that up).
    Thanks,
    dm.
  •  08-02-2004, 10:38 PM 1418 in reply to 1408

    Re: Question regarding image properties.

    dm,

     
    You can't change the menu icon image size right now.
     
     
     
     

    asp.net Chat http://cutesoft.net/ASP.NET+Chat/default.aspx
    Web Messenger: http://cutesoft.net/Web-Messenger/default.aspx
    asp.net wysiwyg editor: http://cutesoft.net/ASP.NET+WYSIWYG+Editor/default.aspx
    asp wysiwyg html editor: http://cutesoft.net/ASP
    asp.net Image Gallery: http://cutesoft.net/ASP.NET+Image+Gallery/default.aspx
    Live Support: http://cutesoft.net/live-support/default.aspx

  •  08-30-2004, 4:03 AM 1651 in reply to 1408

    Re: Question regarding image properties.

    Since you cannot change the small menu icons I found (a simple) way to customize all the menu button (a work around).

    I use the gallery control to enable many dynamic photo galleries for user of my site.  So I only allow the administrators the ability to use any of the Menu items (and it all has to self manage dynamically).  But I wanted to make the menu buttons into my own or use text as the images were too small for my taste and IMHO hard to understand for the average aol user...:)
    This is how I go about it:
    Here is my html code (I use a runat server div tag so I can programatically turn visable on and off based on admin authentication-you can use whatever you want of course):
     
     <div class="postADMIN" id="GalleryAdmin" runat="server">
      <a href="#" onClick="EditImageList('Thumbnails',1);" class='blackText2'>Edit
       Details</a> &nbsp;&nbsp;&nbsp;&nbsp; <a href="#" onClick="upload('Thumbnails',1);" class='blackText2'>
       Upload Images</a>
     </div>
     
    To find any of the onClick cmds for any of the menu items simple turn them all on and view the HTML source of your page and copy paste the desired <a href>  that contains the item you wish to customize (the look of).
     
    **dont forget to turn off the default menu items for those you custom write: 

    gallery1.ShowUpload=false;

    gallery1.ShowEditDescription=false;

    DM.
View as RSS news feed in XML