Need advice on how to slice layout

I am fairly new to web design. I have studied it for two semesters in college, but I have forgotten many techniques since. However, I know enough to follow any advice given.
What I am seeking is some advice on how to break down my layout. Particularly, I need help deciding how to slice the layout and organize the divs.
I have a good idea how to slice and manage the header and footer; however, I am puzzled on how I should structure the menu on the right. See the attachment, how the menu drives up from the body content, past the secondary navigation, and into the main image?
I need help in the middle area there.
Thank you in advace!
Hayden W.
[IMG]http://i19.photobucket.com/albums/b184/HayWet/whetstonelayout.jpg[/IMG]

If your design comp is in layers, you can toggle layers on/off to save individual elements.
Taking a Fireworks comp to a CSS Layout in DW
Part 1 - Initial Design
http://www.adobe.com/devnet/dreamweaver/articles/dw_fw_css_pt1.html
Part 2 - Markup preparation
http://www.adobe.com/devnet/dreamweaver/articles/dw_fw_css_pt2.html
Part 3 - Layout and CSS
http://www.adobe.com/devnet/dreamweaver/articles/dw_fw_css_pt3.html
Nancy O.
Alt-Web Design & Publishing
Web | Graphics | Print | Media  Specialists 
http://alt-web.com/
http://twitter.com/altweb

Similar Messages

  • Need advice on how to store and retrieve mathematical symbols - Oracle8i

    I am a student developing a web database for a P3 project and am having trouble inserting non-standard text particularly mathematical sybols (intergrals and the like) or Gifs/Jpegs. Could anybody give me some advice on how this should be done? I am using PHP, Oracle8i and Solaris.
    Cheers Pete

    >1. I have all of my RAW files on my Mac's desktop and they are organized at the top level by each of the 2 cameras they were taken with and then the sub folders of each organized chronologically with each subfolder titled by the location or subject of the images matter within each folder.
    >I want to import these into Lightroom 2.3 in a manner which will preserve this taxonomy.
    >I also want to convert these RAW images into DNG files on import. How do I set up LR2 to do this?
    On the Import Photos Screen, pick "Copy photos as Digital Negative(DNG) and add to catalog" from File Handling drop-down at top of screen.
    If your photos are organised as:
    Photos - Camera 1 ...
    - Camera 2 ...
    then Lightroom will reflect that folder view in its Folders panel. Also, when converting to DNG you get to choose destination folder (answers part of your question 2) and multiple organisation choices including "Organize by Original Folder"
    (Take a look at Chapter 4 of the help file for more information: http://help.adobe.com/en_US/Lightroom/2.0/lightroom_2_help.pdf)
    2. I want the Lightoom files and the image files....
    Create your catalog on that drive. Move your images to that drive before importing them, and when converting to DNG on import, choose a folder on that drive as destination on import screen.
    >Is RAID 1 as safe as backing up to 2 different HD's?
    No. RAID 1 is a simple mirror of 1 drive on another; so if you delete a file on drive, it is also deleted from both drives. Likewise, if a file is corrupted on one drive it will also be corrupted on the mirror. RAID 1 is good as a safeguard against single-drive failure; your data will be available from the remaining drive, but it is not a safeguard against user error or file corruption.

  • Need Advice on How To / Recommended App. for Custom "Word of the Day" Screensaver

    I really like the “Word of the Day” screensaver that comes with OS X 10.8 Mountain Lion.  I would like to either 1.) customize this screensaver with my own dictionary OR 2.) identify an app that I could purchase / download which would allow me to create my own custom “Word of the Day” screensaver. 
    Does anyone have advice on how I can create a custom “Word of the Day” screensaver using my own dictionary?
    Any advise would be greatly appreciated!

    Thank you!
    If you have time for just a couple more questions.  The ultimate goal is have my new flash files in a version (as3) so they can be used as android, html5 and iOs products.
    So would the steps be these?
    Install cs6
    Open SWF files that were created in as2
    (I am assuming by doing this, all the assets will end up in the library which is currently not happening when I import the swf files into Flash CC)
    So now I have the old swf files open in a version of flash that works in as2.
    I understand that as2 is not fully convertible to as3.  But assuming I want to use the assets (graphics and audio) to recreate the animations in as3 can I then save the as2 file as as3 so it would then work with AIR?
    Thanks again?

  • Need advice on how to create report

    I'm not sure how to do this, so I'm asking advice from the apex gods...
    here is the issue, I have two tables that I need to combine info from. not an issue in its self. I can do that. but here is the issue. in Table A I have some data like disc_id, title, theids, etc.. Table B contains fullname, theid, emplid
    now in table A the column 'theids' is populated from apex as a multi select list. so the values in the column is something like 48;3;88
    it got these id numbers from the Table B query (lov popup) that returns theid of the person chosen.
    now I have to create a report that will be used in a excel download and what they want is one line per disc_id and they want the more useful 'emplid' in the field where 'theids' are at. that is instead of :
    disc_id Title theids
    101 Test 48;3;88
    they want:
    disc_id Title Theids
    101 test N33456,N3457,N43562
    so I'm kind of stuck, I can figure out how to write a sql using instr to get something like this:
    101 test N33456
    101 test N3457
    etc
    but that is not what they want. so I'm thinking I need to create a package to do this and return some sort of values. the problem is I can't figure out how I can substitute the 48;3;88 for N33456,N3457,N43562
    I'm still new at this pl/sql and apex stuff so sorry if this seems to have some obvious answer.

    I might be dense so forgive me on this, but I don't think that will solve it.
    your example uses field from apex, like :P3_SOME _VALUE
    this report screen has no fields. there are no :P#_ type values to pull. I'm writing a report screen using a report template.
    all the data I need for the report exists within the table. I just need to display it the way they want.
    I could do just a:
    select *
    from my_table
    and it would create the report just fine. the only issue is one of the columns would have 48:3:88 in the field. which to a person reading the report means little. so i have no apex fields to pull.
    I was trying to write a pl/sql function that would substitute those delimited values with meaningful data. but when I do I get multiple rows and I can't have that. so my choices so far I see are..
    1) create the report with a simple select leaving the data as is
    2) create report that has multiple rows of data where each instr value now has the correct names (some have 2 some have 5, big list to read of dups)
    3) create a package that populates a temporary table with the data I need then select on that table to get the report.
    right now I'm thinking #3 is the only way to get what I want. By the way your examples would be a great help in doing that I can already see that I can use some of them to create a temp table with that data.
    what I was hoping for was some option that I don't understand or missed that a more experienced person would know. but its looking grim.
    I thank you all the info you have given, its been a great deal of info that I can use at some point, but so far I don't think it will solve my issue.

  • Need advice on how to best approach Family Sharing, multiple devices, Apple IDs, etc.

    My wife and I both have iPhone 5's (soon to be 6's) running iOS 8, I have an iPad (v2) running iOS 8, and my wife just got a MacBook Air (running Mavericks, soon to be Yosemite). We also have Apple TV (v2) running the latest OS. That's five Apple devices shared between a husband and wife (not counting my two-year-old's unsupported iPhone 4 used for kid games).
    We have always just used the same Apple ID for everything. However, things are changing fast. We have both upgraded to iOS 8, we will soon be getting iPhone 6's, she now has a MacBook Air that will soon support Continuity, and we will purchase iCloud Drive storage for our iPhone 6's to free up photo/video storage space from our phones. We need to rethink and reorganize how we manage these devices because my wife does not want my email, iMessages, contacts, or Safari bookmarks showing up on her new MacBook, but she would like to use the upcoming Continuity feature.
    In the perfect world, we would like the following: We would like to have separate: 1) email, 2) iMessages, 3) contacts, 4) Safari bookmarks, and 5) photos/videos. But we would like to have access to: 1) each others' backed up photos and videos stored on the new iCloud Drive, 2) iTunes, App Store, and iBooks Store purchases, and 3) a shared family calendar.
    Right now, using the same Apple ID on all five devices, we are able to successfully do all of the above by setting up different email accounts on each device, by designating different phone numbers and email addresses on each device, etc. However, when my wife set up her new MacBook Air this morning, she told it to import Contacts from the Apple ID, but it looks like it imported everything from an old iCloud backup of my device. How can my wife totally integrate and sync her own iPhone and MacBook Air without getting the bookmarks, contacts, etc. from my iPhone? Is there a way to do this, whether through same/different Apple IDs, the new Family Sharing mechanism, or a combination of both? Any considerations or advice that I am not thinking of?
    Thanks so much,
    New At This
    PS - I am very computer literate and can implement complicated solutions if necessary, but I am not familiar with any cross-device sharing options or even the OS X interface at all.

    here's a mockup of sorta what I'm going for:
    http://imgur.com/pN70P
    just not sure what elements would be most logical to start from!

  • Need advice on how to set up pages!

    So I am making a site and there is a section that will be
    dedicated to selling boats. I need to have on one page a listing of
    all the boats with a thumbnail picture and title...easy enough, I
    can handle that.
    The part I can't figure out though, is that I need to be able
    to click on the listing title and have it open a new page with
    several more pictures and a full description. My questions:
    1. Can the database (mysql)/dreamweaver automtically resize
    an input picture to a thumbnail size?
    2.How can I create this layout and make it editable by users,
    i.e. with a form to update records in the database that will
    automatically create these pages with the input of
    descriptions/pictures, etc?
    I am familiar with mysql and use phpmyadmin and Dreamweaver,
    however I am no expert. Any ideas anyone?!

    www.cartweaver.com
    Walt
    "Brandon7777" <[email protected]> wrote in
    message
    news:fujl4e$4gn$[email protected]..
    > So I am making a site and there is a section that will
    be dedicated to
    > selling
    > boats. I need to have on one page a listing of all the
    boats with a
    > thumbnail
    > picture and title...easy enough, I can handle that.
    >
    > The part I can't figure out though, is that I need to be
    able to click on
    > the
    > listing title and have it open a new page with several
    more pictures and a
    > full
    > description. My questions:
    >
    > 1. Can the database (mysql)/dreamweaver automtically
    resize an input
    > picture
    > to a thumbnail size?
    >
    > 2.How can I create this layout and make it editable by
    users, i.e. with a
    > form
    > to update records in the database that will
    automatically create these
    > pages
    > with the input of descriptions/pictures, etc?
    >
    > I am familiar with mysql and use phpmyadmin and
    Dreamweaver, however I am
    > no
    > expert. Any ideas anyone?!
    >

  • Need advice on how to approach interactive timeline/chart Component

    For my application I need a component (or combination of components) that shows a number of different types of events along a timeline, displays them in different ways as specified and allows you to click/hover along the timeline to add/modify/get details on events.
    I'm not sure if I should attempt to extend the flex advanced datagrid, or use one of the several vaguely similar component types I've found online (http://www.gantt4flex.com/, http://flexlib.googlecode.com/svn/trunk/docs/index.html?flexlib/scheduling/), or how best to approach, but I need to get this on its feet fairly quickly.
    Basically I want a timeline across the top, always showing a  24hour period, but starting at variable points.
    I need to have different rows of variable height to display different types of data in different ways.
    for instance
    - row 1 will display the 'value' attribute as a circle whose diameter reflects value amount and change color based on a 'typecode' attribute.
    - row 2 will display a line graph and plot chart based on different numbers, but will also chart out trend of following or previous data if it exists.
    - behind row 2 will display the same thing but for 5 previous days progressively more transparent
    -row 3 will display the number values from row 2
    -row 4 will display another type of data, this one with duration, as bar lines. you will be able to click with in this row once to set startpoint of new entry and once to set endpoint to create new entry. onclick..
    -row 4 will display color coded squares for a number of different datatypes and hovering will reveal details.
    all rows need to share the same timespan, and I'd like to be able to have click/hover events that target the data object/values of the data being displayed.
    I have a data model and can come up with whatever data I need no problem (working from sqlite). But I haven't built a component from scratch before and am wondering how to approach something like this.. how to break it down etc.. any advice is greatly appreciated

    here's a mockup of sorta what I'm going for:
    http://imgur.com/pN70P
    just not sure what elements would be most logical to start from!

  • Need advice for making a board layout in Ultiboard easy to assemble/troubleshoot

    I was wondering if anyone has a good method to go from a Multisim schematic to an Ultiboard layout, keeping specific legs of the circuit separated geographically for assembly and troubleshooting purposes.  I have a circuit with a few analog filters that are tuned to different frequencies, so they have identical components, just specced to different values.  This project is slated for only short run purposes, and will be assembled by hand (the parts are mostly through-hole).
    It would be really convenient to be able to automatically make each leg identical for troubleshooting and assembly.  I know that I could slowly work it out myself with a schematic and the ratsnest, but I was hoping for a quicker way, and I see a whole lot of functionality in Ultiboard that I don't know how to use yet.
    The method I've been using so far has been pretty rough.  With nearly 250 components, I've been saving the schematics multiple times with each subsequent leg added, and exporting the netlist to Ultiboard one at a time with previous components locked into place.  It's a painful process, but it works.
    Thanks in advance for your advice!

    You can use the group replica place and the copy route options to do exactly what your asking.  Since it seems your new to this package, it will most likely take the same time to get to the finish line if you do it manually or the method I mentioned.
    Signature: Looking for a footprint, component, model? Might be here > http://ni.kittmaster.com

  • Help needed very BAD, how to manage layout which is going to 2 pages

    Hi all,
    Need your help very bad. I am very new to reports.
    I have a layout which goes to the second page. First page is a form layout (One record). I drew the form layout and placed all the fields in the form and works fine. But my problem is when I have 3 fields which are on the second page, because it doesnot fit in the first page. When I run it, the form (first page) get printed for all the records and the second page get printed only in the last at the end after printing all the records. How do I ask it to print it simultaneously. First page then the second page and so on. I set the PAGE BREAK AFTER to YES and still does not work.
    Please guys need your help.
    Thanks.
    Joe.

    Sometimes a problem with Firefox may be a result of malware installed on your computer, that you may not be aware of.
    You can try these free programs to scan for malware, which work with your existing antivirus software:
    * [http://www.microsoft.com/security/scanner/default.aspx Microsoft Safety Scanner]
    * [http://www.malwarebytes.org/products/malwarebytes_free/ MalwareBytes' Anti-Malware]
    * [http://support.kaspersky.com/faq/?qid=208283363 TDSSKiller - AntiRootkit Utility]
    * [http://www.surfright.nl/en/hitmanpro/ Hitman Pro]
    * [http://www.eset.com/us/online-scanner/ ESET Online Scanner]
    [http://windows.microsoft.com/MSE Microsoft Security Essentials] is a good permanent antivirus for Windows 7/Vista/XP if you don't already have one.
    Further information can be found in the [[Troubleshoot Firefox issues caused by malware]] article.
    Did this fix your problems? Please report back to us!

  • Newbie needs advice on how to approach a new project using iMovie/Cubase

    Hi all.
    As you have probably guessed it's a music to picture problem, never done it before so I need some advice. I'm doing a guitar tuition DVD so there will be some playing and some speech. I can combine both real time via the mixing desk and feed it straight to the camera's mike input. This seems to be the least flexible and most low tech approach. I would prefer to fiddle about in Cubase to get the audio right before fixing it to the video. I am unsure how to use iMovie and Cubase in a combined way to produce what I'm after. Cubase will handle video and iMovie will handle sound but which way round do I do it? I'm at a loss as even what questions to ask! At the moment I'm setting iMovie to record from the camera, setting Cubase to record the audio and clapping in time with the count in to act as a sync. Once I have my audio file I can import the vid into Cubase or import the audio into iMovie. Am I missing something here or is this the right way to do it? ( I might sound vaguely clever but don't rely on it in your answers ! I'm a guitarist after all....)
    TIA Nick.
    ,quad G5 Mac Mini   Mac OS X (10.4.6)  

    musicians are used to do everything simultanously (=band), film/video is doing each thing after the other ;-):
    I would
    * record the video to a camcorder, incl. guitar/music but NO voice-over…
    * import that into iM…
    * edit all together
    * THEN use this as a "click track" for any audio processing…, mainly adding the narration
    * re-import the final audio track back to iM, create videoDVD, getting rich by selling zillions of them....
    advantage: you concentrate on playing guitar OR telling the tricks&clues...
    besides: whatfor you need Cubase in such a project...? or is it "Guitar IN Cubase"?

  • Need advice on how to export ALL images including any changes (Versions)

    I have well over 15000 RAW ORF Olympus images in Aperture with approximately 10000 of them in the database and the rest as references to the file on the file system.
    My problem is 'many' fold...
    First I am frustrated with using Aperture only because it doesn't seem to perform well anymore either because I have too many files, the database is corrupted, DB IO is slow... I don't know but its not performing as it did when I started using it and I don't know what to do to fix it... so with that said here are a few options I am pursuing and the problems I am having doing so.
    I am moving to Adobe Bridge and Photoshop CS4, however with most of the files in the Aperture database I need to have them exported... however the only options are Master and or Version, which is frustrating because if I choose Master I get the original RAW file less all the changes done to any versions and if I choose the version I get customized JPEG's less the RAW master file. huh! I would like if possible some other options but I can understand if they don't exist.
    1. One option would be to get all the masters (which I can do now) but only if they are in the database and not referenced.
    2. Second option only would be to get all the versions if the RAW was modified and not export a version for a selected image if it does not exist.
    3. Third, have some way to only selected actual modified version images and not every image in a folder or in the database.
    4. Export to Photoshop .psd format with layers instead of versions?
    5. Filter by files in the database and files that are referenced.
    6. ... I'm open to other suggestions.
    Is there a way to move all the database files back to file referenced to shrink the Database or do I need to export everything and then re-import them as references?
    The export process for so many files is killing me as its taking me days and days and I have no way to cross check to ensure all the files and versions are retained when exported - I'm not sure what I have or how to rebuild them in Aperture at a later time once exported?
    I am exporting the sidecar file with every image but am not sure the value or significances of this file - can this file help when moving to Photoshop/Bridge?
    BTW. Another reason I wish to move from having Aperture manage my files in its database is I have now lost a few hundred unrecoverable pictures for no known reason in aperture, once after a trap as I was processing a image, I lost all of my sisters funeral shots - so so sad.
    Help!!!

    Something is very very very wrong - 15,000 images are nothing, unless you have them all in one project. I have 300,000+ with no issues in performance. Another indicator is days to export 15,000. Don't blame Aperture - you have a giant problem.
    I am not going to address how to do what you want exactly because I do not have the time but here are some hints -
    You can search for adjusted versions, and you can search for managed vs. referenced (file status). You may want to think about using relocate master with some clever subfolder options/selections to put all of you original masters and any external edited masters (PSD, etc) into a nice neat hierarchy for you to browse via bridge - Aperture is fantastic at reorganizing directory structures via relocate masters.
    There is no way to export adustments+RAW that Photoshop can interpret. If you want the Aperture non-destructive adjustments you must export versions end of story.
    Personally I would figure out why you are having such issues with Performance - there is a cause and it will probably give you issues no matter what you are using down the road.
    RB

  • Need advice on how to make my website look better!

    ive made a website for a security company but im just not 100% happy with it, i dont know if it doesnt look professional enough or things need changing design wise. i am open to any ideas on how to make my website look better, i also dont mind if anyone wants to dramtically change it if their idea is better. I would just very much appreciate a review and constructive critisism and ideas for a newly designed version of the site please!
    [advertising slogan removed by host]
    Thanks!

    As a novice, some things I see: The footer has redundant, unecessary images (4 large images-for your services--REDUNDANT) odd? The text part of footer: text seems close, scrunched, have some space between heading and items, DO NOT CENTER TEXT!,
    One of the service links bought to page with SAME LARGE image on homepage-change picture, don't use same large image for 2 different pages.
    DO NOT use CONTACT US as 1 of 5 links on menubar. Do in another creative way, and/or use footer for contact. I think this looks amateurish (my opinion of course).
    If I remember, the homepage and the rest of site, have exact same page structure.--See if you can atleast change the structure of inner pages versus the homepage.
    Didn't look at enough, but..maybe...
    each of your services should be a main menu link on your menubar. I would not put contact us on menubar, and you also had another menubar link with no dropdown( of course ok, but maybe could restructure)--Also your last service (on right of menubar)---why is that one different, and not included with the other services??
    Seems like your menubar (items) structure could be reworked.--I would suggest, briefly looking at, to maybe have each service as a primary menu heading/title..YOU MAY NOT NEED A DROPDOWN MENU? Make sure if dropdown it is necessary.
    Local security should be one of your services.
    Have your footer logo, as is to left, but maybe put your footer links more to the right;;It will 'balance' the footer section
    Your top logo seems too close to your main LARGE image (Which btw, seems oddly large compared to the rest of your site?)--That LARGE top image(the same palce on every same looking page), seems too big for your page--Why doen't it line up with the rest off your page content?

  • Need advice on how to get the most out of iDVD.

    My wife and I do wedding Photography - Videography as a source of extra income.
    My question is: How can I produce the highest image quality dvd for our clients using iDVD.
    I dont quite under stand the difference between exporting from iMovie to iDVD and Sharing the
    movie from iMovie to the media browser, then opening iDVD and adding the movie that way.
    I shoot the movies with my Sony HDR-SR12 Camera and edit the footage with iMovie 09'.
    "please explain slowly and clearly" I am good with what I already know, however can quickly get
    confused when taking on new methods and or terminology...
    Thanks in advance.

    My question is: How can I produce the highest image quality dvd for our clients using iDVD.
    "please explain slowly and clearly"
    If only it WERE simple.....
    Your camera shoots HD video in AVCHD format. DVDs use mpg-2 compression and are really 4:3 devices; 16:9 content is anamorphically squeezed to the SD format. DVD players unsqueeze it on playback.
    Converting you HD AVCHD video to anamorphically squeezed mpg-2 content offers lots of opportunities for quality loss.
    You can try simply 'Sharing' your iMovie '09 movie with iDVD but I expect this will not produce maximum quality.
    I probably would choose the Share>Export using QuickTime option and then select the QuickTime Option>Video Setting of Apple Intermediate Codec. This conversion may take quite a while.
    For single layer media, if your content is under 60 minutes Best Performance encoding will probably give you the best results; if it's over 60 and under 120 minutes use Professional Quality. Personally, I try to stay away from DL media.
    What I suggest you do is create a short (say 15 minute) demo video clip and then try the various output option from iMovie and encoding options in iDVD to see what you like.
    When the iApps first came out (about 8 years ago), most prosumer video shooting was done in the DV format (digital video on mini-tape cassettes). DV is an easy format to edit because it is 'lightly' compressed and all the information needed to edit is easily accessible. The newer formats (like your AVCHD) are much more highly compressed and are more complicated to work with.

  • Need advice on how to handle off site computers that need imaging.

    Hi
    Our SCCM server is at our main campus, across the street from our campus, I have 16 computers  that need imaging that are in a totally separate building that is linked to the main campus via microwave.
    Could I copy the wim file to a portable drive and take it across the street, is there a way to image these computers and have it run a task sequence from a portable drive? if not, do you have any advice. I don't think the microwave could handle a multicasting.
    Any advice would greatly be appreciated.
    ps: the wim file is about 22 gig.

    Hi,
    You could create a standalone media to perform the OSD.
    http://technet.microsoft.com/en-us/library/bb681017.aspx
    Regards,
    Hau 

  • Needing advice on how to interpret crash report

    Hi,
    I'm hoping someone can point me in the right direction. I need to interpret a Flash CS6 crash report. I'm working on an ios app and Flash keeps crashing when I publish it. Note: All is fine when I test the app on the desktop. As I mentioned in a separate post, Flash CS6 crashes when I add more than 45 swfs to my asset folder. A crash report gets generated but I have no idea what it is telling me. I've seen some discussion on crash reports related to InDesign but I didn't find them helpful. Any advice would be greatly appreciated.
    Thank you.

    Hi kglad,
    I appreciate your response. Ok, so the crash report is for adobe's benefit. I guess the question is what about the developer's benefit? I still have an application that is crashing when I try to publish and I have absolutely no idea as to why. I won't bothering ranting about Adobe's lack of technical support as I know it would be fruitless. I just want to get my app up and running. If I can at least understand what the issue is, I can then try to find a solution. Any other suggestions on next steps?
    Thanks.

Maybe you are looking for

  • Print to a Laserjet 4050 networked on an XP machine from my iPad

    How can I print to a Laserjet 4050 networked on an XP machine from my  iPad?  Can I use the AIO app?  does not find the printer.  Thanks.

  • How to switch into an international keyboard?

    How to switch into international keyboard while I am using the apple's wireless keyboard? You know when u connect the wireless keyboard on ipad, the original keyboard on the ipad screen will disappear. at that time, how can i switch the english keybo

  • Can't import DV files or convert them

    I am unable to import DV files into FCPX.  I've seen that others have had this problem as well, but this doesn't only happen with .dv.  I have a file that was exported from FCP7 as DV/DVCPRO - NTSC, 720x480 (640x480).  Audio is Linear PCM, little-end

  • Which payment method allows 12 month subscription

    When I try to buy a subscription 12 month susbcription is disabled. I have tried a credit card (Amex) and Paypal payment methods. What I see is the following, "Unfortunately, you cannot purchase this amount of Skype Credit as it will exceed the month

  • Alert to IC Agent when the status for the service request is changed

    HI,    When a Service request status is changed to completed immediately the ic Agent should receive an Alert so that he can call the customer for survey. If he has not taken any action then the alert should be available in his inbox and an Alert sho