Help creating a new website

I've created a few websites previously, and I've been attempting to improve on them each time. I found this image, for a website I really liked the design of:
http://premiumtemplate.org/it-therestaurant-joomla-template.html
However despite trying different methods I really don't know how to go about creating something similar.
Any help would be much appreciated,
Thanks,

Tm-Butler wrote:
Okay,
I can create a background image to use, however I'm not sure of the best method to place it as the background
And while I can create the features on the page I have no idea how to add the transparancy and put them on top.
You do have a ways to go, but if you are interested in learning then you are on the right path.
Creating a background is one step, but implementing the background is another.  When you design something it is a fixed size, so depending on the resolution of the screen will depend on what your user's see and how they view the page.  So do you need regions to repeat?
As far as transparency is concerned, you can do CSS transparency which is only available in newer browsers or use PNG transparency with images.  The PNG method will work in IE7 and newer, but if IE6 is a concern, then users won't see the transparency.
A good tutorial to read over is the following: http://www.adobe.com/devnet/dreamweaver/articles/dw_fw_css_pt1.html .  It is a good explanation of how to turn a design into HTML and the process that goes into it.
But as gramps said, we need to see what you have going on and where you need help.  Think of users here like teachers, here to guide you to your answer.

Similar Messages

  • How can I edit my website from another computer? and how can I create a new website next to the one, I have already? Can anyone help, please?

    How can I edit my website from another computer? and how can I create a new website next to the one, I already have? Can anyone help, please?

    Move the domain.sites file from one computer to the other.
    The file is located under User/Library/Application Support/iWeb/domain.sites.  Move this file to the same location on the other computer and double click and iWeb will open it.  Remember, it is your User Library that you want and not your System Library, as you will not find iWeb there.
    Just create a new site on the same domain file and it will appear below the other site.  If you want them side by side then duplicate your domain file and have one site per a domain file and they can then be side by side.

  • Can I join the partnership without creating a new website?

    I have a client who already has a business catalyst website, which I would like to edit in Dreamweaver. Can I join the partnership program somehow without having to go through the process of creating a new website which I don't need?
    Also, I am unclear on how to get the dreamweaver extension.
    thanks!

    Hi,
    For DW extension it depends on what version of CS you are working under.  If CS4 or CS5 you'll need to install the plugin. 
    - http://www.businesscatalyst.com/support/dw
    If using the latest CS6 it's already integrated into DW.  - http://www.businesscatalyst.com/dw/templates_video.html
    As far as editing your client's site you can just have the client add you as a site admin.  This will allow you to edit as required. 
    Kind regards,
    -Sidney

  • How do I create a new website using the same format as my last one?

    I created a site last year and now I want to use the same templates for blog, photos, albums, etc. as last year's. In other words, I'm looking for a "save as" where I can add new content but not have to re-format everything. Thanks for helping.

    Welcome to the Apple Discussions. Open iWeb so you see your original site in the left hand pane. Use the File->New Site menu option to create a new site. Give it the name you want.
    Now select a page in your original site and type Command+D. That will duplicate the page. Drag the duplicate page down to the new site and rename it as needed. Do that for the other pages you need in the original site.
    OT

  • Creating a new website in iweb

    I have a website created in iweb. Now I want to create another one which has nothing to do with my original one. How do I create a new one without showing mu start website on LHS?
    Please answer soon.
    Thank you,
    Indira

    Tom,
    I may completely wrong, but I think Indu meant iweb sidebar.
    Indu,
    Drop me an email: hac.le<at>sbcglobal.net
    I have an AppleScript app to start new site (domain).

  • Help creating a new project in JE8.1

    Hello,
    As I am very new to JAVA and the IDE I am having problems creating a new project using JE8.1.
    The problem that I am having is when I try to create a new project the only option under the "standard" folder is for me to create a project using an existing one. How in the world do I start from scratch?
    Could there be a problem with my install? I can open and edit existing files but for some reason when I try to create a project from scratch I do not have that option
    Thanks for pointing this newbie in the right direction
    Shawn

    Missing project entries are usually due to a corrupted userdir. Please try running the ide with a fresh user directory.
    http://blogs.sun.com/karthikr/entry/jse_directories
    http://wiki.netbeans.org/wiki/view/FaqMissingProjectCategories

  • Upgrading iWeb 1.1.2 to IWeb 09...will I have to create a new website?

    Like many others I see here, I am suffering with the error msg's when trying to publish my website now that MobileMe is up and running - basically it is a blog-based site and I know that MM and the old blogs are just not getting along..... I am debating whether to even continue with my MobileMe subscription but that is another thread.....
    If I can find a solution to my publishing issues and decide to continue with MobileMe and then I buy the new iLife 09 it seems like from what I have read that I will need to completely scrap my old website and rebuild it. Is this really true? And if it is, why would I buy iLife 09 and rebuild my site (not an easy task) when it seems like this same scenario might happen repeatedly on future upgrades?
    I'm really confused and before I contact the 24 hour help thought I would post here to see if I can get some clarification.
    Thanks in advance.

    No. If you upgrade to 09 you would not have to re-build your site. iWeb 09 will be able to open your iWeb 06 built site - they are not backward compatible, but 09 should be able to open 06 without a problem.
    Just make sure that you back up your domain files before you upgrade - so Home User/Library/Application Support/iWeb/domain.sites.

  • My stupid FOR loop doesnt work to create a new array, help!

    Hello, I need help creating a new integer array that contains exactly one of each element a different array.
    My original array is called co[]
    lets say it has the values: 1213445232
    I want my new array called classArr[]
    for example, it would end up being: 12345
    my integer array is called classArr[]. and i want it to store exactly one of each element from the co[] array. Here is my code. It compiles without errors, but I get out of bounds exception when i run it.
    classArr[0] = co[0];
    int temp = 1;
    for (int k = 0; k < x; k++) { //x is the number or elements in co[]
         for (int j = 0; j < temp; j++) {
              if (classArr[j] != co[k]){
                    classArr[temp] = co[k];
                    temp++;
    System.out.println("Values in new array");
    for (int c = 0; c < temp; c++){
         System.out.println(classArr[c] + " ");
    } Thanks for your help!!!!

    im pretty sure the initialization of the variables are
    set right.Well, without seeing the initialization I doubt I can help you. Try to figure out if it is classArr[temp] or co[k] that causes the exception. (Hint: put them on two different lines.)
    x is the number of elments in the co[] arrayTry replacing it with co.length.
    classArr[] is a dynamic array set to a number, lets
    say it's abcWhat is a "dynamic array" in your terminology? And what is "abc"? Please provide at least the declarations of your arrays.

  • How to create / edit a website using SharePoint Designer 2013

    How to EDIT a website created by Frontpage using SharePoint Designer 2013 ?
    How to CREATE a new website using SharePoint Designer 2013 ?

    You can edit any sharepoint site using designer not any other site.
    To create a new website using designer follow below:
    To create a new site, click the File tab, choose Sites, and perform one of the following:
    Click New Blank Web Site to create a blank, empty SharePoint site.
    Click Add Subsite to My Site to create a new site under your My Site.
    Under Site Templates select a template to create a new site based on a SharePoint template.
    http://office.microsoft.com/en-in/sharepoint-designer-help/get-started-with-sharepoint-designer-2010-HA010370548.aspx#BMopensites

  • How to create a new virtual host under tomcat 4.1.x?

    hi all
    i need some help creating a new virtual host under tomcat 4.1.18!
    that's what i do:
    i'm using the web configuration, reacheable by typing "http://localhost:8080" and then clickign administration
    i create a new host
    name: www.class-site.it
    application base: webapps\class-site
    then i create the context:
    document base: webapps\class-site
    path: /
    and nothing works!!!
    anyone could help me?
    if needed i can also post the server.xml file
    thanx in advance for your help
    sandro

    It should look like this
    <Host name="myvhost.com" debug="0" appbase="/my/path/to/webapps" unpackWars="true">
    <Context path ="" docBase="ROOT" debug="0"/>
    </Host>
    This should be inside the <Engine> tags. You should be able to access a page by going to
    http://myvhost.com:8080/index.jsp
    Obviously you need index.jsp in /my/path/to/webapps/ROOT/index.jsp
    Hope that helps

  • Help creating a search

    I created a document management section for our departments site (CF9).  I'm asking for help creating a new part of the search, and will list all of the parts I am looking for help with, that way if you can only contribute to one part, it will get me that much closer to what I need.  I already have a Title only search working, and added a second search that does both Title and Keywords.  I am using cfindex and simply created a new collection for the Keywords and searched the two collections.  Our staff will mostly search only Titles but wanted the option to search all content.
    The next colletion will be for the content of the documents.  The site will contain .doc and .docx files.  All files are maintained in the same folder.  There is a MS SQL database table that indicates if the file is in an archive status or active.  The same table lists the document number and its extension.
    So, what I want to do is query the database to see what files I want the index to scan.  I need to dump the collection each night just after midnight and re-do the index.  There will be documents added and archived on a regular basis and I don't want archived documents remaining in the collection.
    Almost every document will contain common words such as the, and... so if a user searched for "the correct temperature" I don't want to retrieve all of the documents.  How can I exclude common words?
    Thank you

    Thanks,
    I deleted the Verity and created the Solr collections.  By the way, how do you pronounce that, Solar?
    I still need help indexing the documents.
    As I mentioned, there is a single folder of .doc or .docx files, but I only want to index the active ones.  To determine the active ones I will do a simple db query first.
    Is this possible?  If not I will need to redo the way files are archived and move them to a different folder.
    Thank you

  • Browser not accessing new website

    Just created a new website and trying to access wordpress. Currently when I click on http://martialartsbasics.com/wp-admin Safari hangs and wont engage. Says server not found after a minute or so. Have called the provider (hostgator) several times and they indicate all is set up correct and have troubleshooted all we can think of. I have other sites that are accessing fine on the same server so I know its not the server.
    One of the tech guys says its the DNS that Mavericks is not accessing for some reason. I tried opening terminal and using the commmand
    dscacheutil -flushcache;sudo killall -HUP mDNSResponder
    But its not behaving as expected. For example it doesnt come up and ask me for my password like the article explains it should.
    here is what Ive tried:
    1. restarting my iMac (using latest Maverick 10.9.1)
    2. tried three browsers with same result
    3. flushing the cache as noted above
    4. emptied browser cache
    5. I can access through proxybrowsing.com so I know its working outside of my device.
    Any other ideas how to get this working?

    It started working this morning so something about the URL being new and populating the servers was taking longer than normal.

  • Cannot update published website without errors: requires deletion of site, then creating a new one.

    Hello all,
    This has been a long persisting issue since we purchased Muse in January 2013, but has since then led to a shutdown of my office's website and email in September. Multiple support technicians were eventually able to restore the website, as well as our email function, but the core of the problem lies in the fact that when I update my website, it becomes entirely scrambled, and the only solution provided to me right now is that I need to delete my site completely (through Adobe Business Catalyst) and then create a new one, while transferring over the same domain information. I have yet to receive guidance on how to resolve this issue properly:
    September 06 Email: detailing the series of events
    Good evening, Zak,
    I am reluctant to bring this to your attention because of the comprehensive nature of the following, but I have been told that my absolute last effort should be to contact you with what has been a persistent problem since the last time we had mediated this particular issue. Essentially, when publishing a website multiple times, sooner than later the format becomes scrambled when viewed online. I am being told I am the only customer known to have this issue, and that it needs to be investigated deeper.
    This is a blurb from our original conversation in March 2013:
    (The whole thread may be found at the following address: http://forums.adobe.com/message/5653912#5653912)
    9.Zak Williamson (Adobe), 
    Mar 12, 2013 4:03 PM   in reply to essbarr
    I'm also puzzled. This isn't a problem I've seen before for a site published to Business Catalyst.
    Please try publishing again, this time to a new temporary site (they're free). You can choose this option under More Options in the Publish dialog. I'm curious whether publishing to a new empty trial site works.
    If that doesn't work, please send me the .muse file at [email protected] along with a link to this thread. If the file is larger than 20Mb you can use a service like Adobe SendNow, SendThisFile, WeTransfer, Dropbox, etc.
    Thanks.
    10.essbarr, 
    Mar 13, 2013 6:49 AM   in reply to Zak Williamson (Adobe)
    Hi Zak,
    I published the website to a new temporary site, and it worked beautifully. Now I just have to fuss with the horizontal bar, and then I'll be super happy. Thank you for your help!
    Sincerely,
    Sarah
    Since this bit of advice, I have freely published to a new temporary site every time the website gets scrambled. I have had temporary websites titled:
    argponline01.businesscatalyst.com
    through
    argponline15.businesscatalyst.com
    along with a bunch more than I cannot recall.
    and Muse files titled:
    argp-uc.muse
    argponline.muse
    argponline_02.muse
    through
    argponline_05.muse
    argponine_3A.muse
    argponline_3B.muse
    and currently, my file name is
    argponline_4.muse (dropbox link)
    I am using Muse on a Mac Powerbook, OSX 10.8.4.
    I don't know how much of the above is relevant, but maybe it makes a difference to you.
    The timestamp on the following thread says September 5th, 2013 4.50AM, but I really sent it the evening of September 4th, 2013. No difference anyhow:
    http://forums.adobe.com/message/5653912#5653912
    What was going on in detail:
    1
    I made a few changes to my argponline_4.muse file on September 4th, 2013.
    The published website at that point was argponlined.businesscatalyst.com (D).
    The domain name was argponline.com .
    (D) was published probably about two months previous, maybe longer ago.
    When publishing (D) on September 4th, 2013, the website appeared scrambled.
    I tried to publish only modified files, as well as publish the entire site, as well as close programs, and restart the laptop.
    I decided to follow the advice given previously, and I published and launched argponlinef.businesscatalyst.com (F).
    2
    At this point I have two bookmarked websites for Adobe Business Catalyst Admin Consoles.
    For (D), the Admin Console address was argponlined.businesscatalyst.com/AdminConsole/#!/Admin/Websites.aspx 
    For (F), the Admin Console address was argponlinef.businesscatalyst.com/AdminConsole/#!/Admin/Websites.aspx
    I was able to sign into both.
    When signed into the Admin Console for (F), I tried to Add a New Domain, but was told that I only had a plan for one hosted website through Adobe Business Catalyst, and that I would need to purchase a plan that offered more hosted websites.
    I signed into the Admin Console for (D) and deleted the domain, but given the option to keep associated files just in case, I opted yes, to keep them.
    When signed into the Admin Console for (F), I tried to Add a New Domain, but received the following error message:
    Domain already exists. Please delete all records associated with this domain before re-adding it.
    There was nothing visible though the Admin Console for (D) to delete the associated records, so I deleted site (D) in its entirety.
    I continued to try to Add a New Domain for (F), but continued to receive the same error Domain already exists...
    3
    At this point (the morning of September 6th, 2013) we have the following set of parts:
    The published and launched site is argponlinef.businesscatalyst.com (F). 
    For (F), the Admin Console address is argponlinef.businesscatalyst.com/AdminConsole/#!/Admin/Websites.aspx
    The website is now completely down, and I have disrupted email service for the office.
    I chatted with Lokesh, who determined this was a technical issue, and I was forwarded to Anshul.
    Anshul's assessment is as follows:
    Anshul: I see the error, Sarah it seems there are some Domain traces left with the system , I tried to clear then out and I am getting errors as well. In this case , we might need to escalate the case to higher level to have deeper investigation related to this issue.
    Anshul: Sarah, the issue is the domain not the site. It seems like there are some traces related this domain in the backend. This issue is more of related to BC and not Muse. I will have this issue escalated and checked with the team and request them to run internal queries to clear the traces and then you should be able to add the domain.
    4
    Soon after I received the following message from Matt Baracz:
    Matt Baracz (Adobe Business Catalyst Support)
    Sep 06 10:50 (EEST)
    Thank you for contacting us.
    I have escalated this issue to our engineering team and have requested them to clear any references to the domain argponline.com from our database. Once cleared, you will then be able to re-add the domain successfully to your site.
    As soon as I receive a response from engineering confirming that this has been actioned, I will let you know directly via this support ticket.
    Regards,
    Matt.
    Around 3 or 4pm, I had not heard anything back, so I attempted to Add a New Domain through the Admin Console for (F). (Turns out Matt works in Australia, and was unable to alert me due to the time zone difference. Understandable!)
    This was done successfully, so the website began to work again, but the email was still down.
    5
    I began a chat again, this time with Srividya. I was transferred to technical support and began conversation with Sanjit. The length of our conversation was probably around 3 hours, and I am so grateful for the time he put in. What a great guy.
    He stated that he had gone through the case details and that Engineering had fixed the issue. We spent some time coordinating the Site Domain information through the Admin Console for (F). Ultimately, email is still not working (settings were probably updated around 5pm), but I understand sometimes it takes a while. Just wanted to note, the last time I updated the email settings it worked within a couple minutes. Varying lengths of time are expected, but I am still curious what effects those variations. Regardless.
    6
    The current situation is this:
    My boss is a bit steamed that our website was down for a day and a half, and that our email is down for a relatively indeterminate amount of time. It's bad for business, and ultimately, I am responsible for these disruptions. I am incredibly concerned that the next time I update our website there will be a slew of problems, which have the potential to knock down service for the website and email again. I am desperate for a surefire way to simply and fluidly update our Adobe Muse website to Adobe Business Catalyst without making the same mistakes again.
    I don't believe I did this the right way. I looked at FAQs, Community Forums, goDaddy Support and anything I could lay my eyes on to try to do things properly, but managed to make a few well-intentioned blunders. I continued to try undo the damage I've done in the past couple days, and with utter frustration, have not been able to fix them on my own. The people who have helped me thus far have done an amazing job, but ultimately, I am happier when I am not taking up their time, or panicking here.
    When I first launched the website a few months ago, there was a step-by-step process that took me through every single action with screenshots included when appropriate. It was exponentially helpful. I was so lost without it this time around, and I was wondering if I could access it again in the future if needed.
    The following is a blurb from my conversation with Sanjit tonight:
    Sanjit: You have purchased Muse subscription , correct ?
    Sanjit: or Creative cloud >
    Sarah Rushing: Yes, we purchased Muse for 1-year, as well as Business Catalyst for 1-year
    Sanjit: Perfect
    Sanjit: With Muse you get 1 free site , so once you create a site and then publish to BC. In admin console you launch the site, that makes your free count used. Now if you create another site, then system asks you to upgrade the site to a paid site plan. ut when you delete the previous site then the free count becomes free and can be used for any other site
    Sarah Rushing: Yes, that is what I did. Is this what I need to do each time? Because I am concerned that the email and website will be disrupted every time I need to make slight adjustments to the website?
    Sanjit: No, you dont need to do that everytime. If the site is scrambled everytime you publish then please report to us. Thats not the ideal way for solution.
    Sarah Rushing: Well Sanjit, I can tell you right now, that is how it has been functioning since we bought the program. I am not entirely certain, but I believe we bought Muse and BC in January.
    Sarah Rushing: I can absolutely guarantee you that the site will inevitably scramble. Am I the only customer you have heard of to have this issue?
    Sanjit: Yes, i have not seen any other reports for this issue
    Sanjit: Well this needs a deep investigation
    Zak, anything that you could offer for clarity of process, would be incredible. I don't know if you will have time to look at this before Monday, but I can tell you I will be available at a moment's notice to fix this issue and to learn anything about Muse and Business Catalyst that you have to offer. Thank you for your time, and I hope you have a wonderful weekend.
    Sincerely,
    Sarah Rushing
    I'm concerned that no one will really read this because it is so detailed and boring and comprehensive, but it is absolutely critical that I find a proper solution before the next update to the website. Thank you so so much to anyone who can possibly provide some insight into this issue.
    Sincerely,
    Sarah Rushing

    In case anyone is experiencing the same issue, I am trying this today.
    Sachin: Okay Sarah, so is it everytime you try to republish the website, it gets scrambled?
    Sarah: Yes, that is correct. And the solution thus far was to publish to an entirely new site, meaning delete the existing one on Business Catalyst and transfer the domain information.
    Sarah: The last time I did that I experience a slew of issues that resulted in no website and email for 4 or more days. My boss was very angry.
    Sachin: Sarah, can you publish your site as a new trial site once.
    Sachin: And provide me the URL.
    Sachin: Then republish on the same trial site and let me check the results.
    Sarah: If I updated the published site within the period of a day, it will be fine. It is when I update the next day or later than that, then the website appears scrambled. So I can create a trial site for you, but it will behave normally for now.
    Sachin: Sarah, while republishing the site, did you select "Only modified file" or "All files" while publishing?
    Sarah: I tried everything.
    Sarah: I made a few changes to my argponline_4.muse file on September 4th, 2013. The published website at that point was argponlined.businesscatalyst.com (D). The domain name was argponline.com . (D) was published probably about two months previous, maybe longer ago. When publishing (D) on September 4th, 2013, the website appeared scrambled. I tried to publish only modified files, as well as publish the entire site, as well as close programs, and restart the laptop. I decided to follow the advice given previously, and I published and launched argponlinef.businesscatalyst.com (F).
    Sachin: Okay. there is one  more thing I would like you to try.
    Sachin: Publish a site as a trial site.
    Sachin: Then wait till tomorrow.
    Sachin: After that login to the admin panel of the site.
    Sarah: Okay
    Sachin: There go to Site Manager>File manager
    Sachin: There will be a file there named Muse_manifest.xml
    Sachin: Delete that file and then republish the  site from Muse.
    Sarah: So in the Adobe Admin Console, underneath Site Manager, I see Web Forms and System E-mails. No file manager?
    Sachin: Please hover the muse on your name at top right corner and click  on My details.
    Sarah: Okay, yes.
    Sachin: Now scroll down  and check the option that says Enable online content editing (incompatible with Muse)
    Sachin: And  then click  on save.
    Sarah: What does this do, and why does it say it is incompatible with Muse?
    Sachin: It will help you see  other options in BC.
    Sarah: Okay, thank you.
    Sarah: I see the File Manager now
    Sachin: Okay.
    Sachin: Now select the file named Muse_manifest.xml
    Sachin: And use the delete button on the right side.
    Sachin: but do it tomorrow
    Sachin: With a trial site
    Sachin: Not with  the live site.
    Sarah: Okay, could you please explain to me what deleting that particular file is supposed to do? I am just very interested in how this works.
    Sachin: This file contains the information about your last upload.
    Sachin: Deleting it will make sure that "ALL" the files are uploaded again from Muse.
    Sarah: Okay, so:
    Sarah: I will publish a trial site.
    Sarah: Wait until tomorrow.
    Sarah: Publish again. If I have an issue, I can log-in to the admin console for this particular trial site and go to Site Manager --> File Manager, and delete muse_manifest.xml.
    Sachin: I will create a case for you and you can respond to the case.
    Sachin: Correct.
    Sarah: After that, I will try publishing again and see if it resolves the issue.
    Sarah: That would be great, thank you Sachin.
    Sachin: Thank you for contacting us. Have a Good Day!

  • Publish the website to the root folder (without creating a new folder)

    Hi there! Sure this problem has already been discussed here many times and I'm not the only one who's interested this question, but how can I publish my website using FTP without creating a new folder, just to the root folder of my web hosting? Is that even possible or should I each time drag all the files from the folder created by iWeb and put them to the root folder manually? I'm a little bit confused. Guys help me with this, please! Many thanks in advance!!

    Yes, you're right, it has been discussed for the past several years and yes, you're not the only who's interested in that question.
    A simple googe search confirms it : avoid iweb sitename
    Try it, if you haven't done it already.
    Here's my answer :
    http://www.wyodor.net/htmlegg/TallCard/TallAjax.html?pg=avoidSitename

  • HT4759 Please help me. My Apple id not be used in iCloud. After sign in, to iCloud, I have error massage: This Apple ID cannot be used to sign in to iCloud. Create a new Apple ID or sign in with a different one.

    Please help me. My Apple id not be used in iCloud. After sign in, to iCloud, I have error massage: This Apple ID cannot be used to sign in to iCloud. Create a new Apple ID or sign in with a different one.

    For whatever reasons, the "None" option is not always available to all users and I think it may be related to what country you live in. Short of contacting Apple to get it straightened out, if you haven't done anything with your new ID ye - you can create an Apple ID without a credit card and simply abandon the one that you just created.
    This explains how you can creaet an ID without a credit card.
    http://support.apple.com/kb/HT2534
    The two big things that you have to remember for this to work are ... you have to sign out of your existing Apple ID .... Settings>Store>Apple ID - tap the ID and sign out. Then you have to try to download a free app to bring up the window that asks you to sign in or create an ID. Read the information on the website that I referenced above.
    If you have not used the original Apple ID for anything yet, you can simply ignore it and use the new one - or like I said earlier - contact iTunes support and ask them to help you sort it out.
    Here is a link to iTunes support. You can change the country in the bottom right corner of the screen.
    http://www.apple.com/support/itunes/contact/

Maybe you are looking for

  • How much can i get Final Cut Studio 2?

    Hi, *in fact, i love this program so so much and i will get it to make tutorials in my blog or website as well but i can't buy it because it is so expensive for me and i'm student too,now i have some questions:-* *1-is there discount for this program

  • I cannot open a pdf, maybe because it was created on a Mac

    I received a pdf file which is supposed to contain a photo. However when I try to open it on my windows computer wth Adobe I see only 33 pages of numbers and letters. Meanwhile I played a bit with it and found this: <pdf:Producer>Mac OS X 10.9.3 Quar

  • I recently lost my Ipod touch which my email is linked to.

    So yesterday at work (which is freight company) I lost my Ipod touch 4thGen. I have my email linked to it and get emails from clients and other personal stuff. If I change my pass on my yahoo account would it ask to sing in  on my lost Ipod?

  • JDeveloper and Eclipse interfacing through Subversion

    WE have a project on Eclipse. We are using Subversion for source version control. Now I've downloaded JDeveloper 11g and would like to bring the project in it. It means some will use Eclipse whereas I want to use JDeveloper and the central repository

  • Can't associate bridge cs5 with nef raw files

    I have been trying to get win 7 to associate the bridge CS5 executable with NEF files. It worked fine for CS4 and yes, i am going to file associations and choosing the bridge.exe for cs5 under x86 programs. It just ignores the choice and won't put it