How to convert a HTML-Website to a responsive design?

Hello
I am new in webdesign and I just create my first website with Adobe Muse. As I finished my site I recognized that it is not respnsive for every width?! Just for 1920px. I despair! I've invested a lot of time in the this project.
Is there any tool to make a HTML-website responsive? Does someone had the same problem? What should I do?
Please help me. Thank you!
P.S.: I don't understand much of CODE-Language.

Hi
Did you check this discussion, regarding the similar topic, you can try these suggestion within Muse, which might be helpful
Can you create responsive sites with Adobe Muse?

Similar Messages

  • How to convert an html/css website into muse

    How to convert an html/css website into muse.

    Hi,
    It is not possible to convert html/css site into Muse. Muse recognizes .muse files only.
    Regards,
    Aish

  • How to convert a HTML files into a text file using Java

    Hi guys...!
    I was wondering if there is a way to convert a HTML file into a text file using java programing language. Likewise I would also like to know if there is a way to convert any type of file (excel, power point, and word) into text using java.
    By the way, I really appreciated the help that you guys gave me on my previous topic on how to extract tests from a pdf file.
    Thank you....

    HTML files are already text files. What do you mean you want to convert them?
    I think if you search the web, you can find things for converting those MS Office files to text (or extracting text from them, as I assume you mean).

  • How to Convert From HTML to XLS?

    Trying to convert a file from a local county government that uses Microsoft to my desktop.  I was told I need to convert the HTML to a zip file and I might need additional software.  Help?

    You're going to have to explain a bit more about what it is you need to convert and what you need to convert it to. An HTML file is a web page, an XLS is an Excel spreadsheet file, and a Zip file is a compressed archive. So as described in your initial post it's not at all clear, at least to me, what it is you need to accomplish.
    Regards.

  • Advice sought re converting existing Bc site to a responsive design

    Hi,
    I read today that Google is shaking up its search rankings to favour mobile-friendly sites.
    I have an existing e-commerce Bc site (fixed width) that I'd like to convert to a responsive design. At the moment I don't have the time to do it myself because I'm working on another business, while running the existing one, and wondered if anyone could offer any advice?
    What I'd like is not a whole redesign (I'm happy with the look and feel) but simply to convert it to make it responsive (and to include an elegant solution for making the tables on the site responsive too).
    I was thinking of using 99designs, or something similar, but maybe there's a better way?
    Site: http://tinyurl.com/mtknz5b
    Kind regards,
    Frank.

    Hi Frank
    i see you are in Sheffield I'm just south of Glasgow
    i can quote you on this if you're open to it
    Would recommend foundation framework.
    We are a partner with a lot of site development and do BC exclusively.
    www.platonik.co.uk
    regards
    Fraser

  • How to convert an html file to an image

    Any Sample Codes.........................

    I need the code in java for this conversion.If the scrolling is there in html......then by snap shot it will not come totally..............I need total html......converted to image..........

  • How to convert my whole website into PDF

    I have my own blog. How can I convert my whole blog into pdf for backup ?

    I am also looking for exact answer to backup my content of blog into PDF. So, How should I do for my blog ? Is there any software or tools for it?

  • How to convert an HTML form to PDF

    Is there any way to convert HTML page (with text boxes,radio/submit buttons) into a PDF file so form can be entered in a PDF format??

    DanCrintea wrote:
    HTML to PDF with Java, using OpenOffice.org - example here: [http://www.dancrintea.ro/html-to-pdf/|http://www.dancrintea.ro/html-to-pdf/]
    You can use OpenOffice.org, running as a server and command it remotely for document convertion.
    Besides HTML to PDF, there are also possible other convertions:
    doc --> pdf, html, txt, rtf
    xls --> pdf, html, csv
    ppt --> pdf, swf
    Code example:
    import officetools.OfficeFile; // this is my tools package
    FileInputStream fis = new FileInputStream(new File("c:/test.html"));
    FileOutputStream fos = new FileOutputStream(new File("c:/test.pdf"));
    // suppose OpenOffice.org runs on localhost, port 8100
    OfficeFile f = new OfficeFile(fis,"localhost","8100", true);
    f.convert(fos,"pdf");
    -----------------------------------------------------------------------------------------------------------------------------------------You really think this is a good way to market your crappy product?

  • Abstract Portal Component: How to inclue a HTML file into the response?

    Hi experts,
    i am currently working on the problem, that i want to access KM inside my AbstractPortalComponent in order to retrieve a HTML File.Afterwars i want to include this file into my IPortalComponentResponse.
    IPortalComponentResponse offers the method include(IPortalComponentResponse , IResource)
    Is it possible to use this method to achieve my goal?
    I have tried this approach:
    IResourceContext resourceContext = new ResourceContext(requester);
    RID rid = RID.getRID("/documents/test.gif");
    IResource resource = ResourceFactory.getInstance().getResource(rid,resourceContext);
    response.include(request,resource);
    But the problem is that this IResource doesn't match the IResource that is needed for this method.
    My IResource belongs to com.sapportals.wcm.repository.IResource
    But the Methos just works with com.sapportals.portal.prt.resource.IResource
    So can you help me on this one?:)
    With Best Regards
    Marcus

    Hi,
    read the contents of the resource and put them to the output.
    Dumb but working piece of code:
    private String renderResource(IResource resource, boolean html) {
              StringBuffer buf = new StringBuffer("");
              try {
                   IContent content = resource.getUnfilteredContent();
                   if (content != null) {
                        InputStream is = content.getInputStream();
                        byte[] bytes = new byte[(int) content.getContentLength()];
                        int i = is.read();
                        int count = 0;
                        while (i != -1) {
                             char b = (char) i;
                             bytes[count] = (byte) i;
                             count++;
                             i = is.read();
                        buf.append(new String(bytes, "UTF-8"));
                        if (html) {
                             buf.append("</br>");
                        } else {
                             buf.append('\n');
              } catch (Exception e) {
    // do something
              return buf.toString();
    hope this helps,
    Rmano

  • Convert english html pages to arabic

    Hi ALL
    How to convert english html pages to arabic.Is there any specific way to do this.
    My idea is to
    a)convert the static contents(english sentences) to arabic by typing in any text editor(save as html/jsp/....)
    call the appropraite page depends on language.
    b)Change the corresponding gif in arabic where ever needed
    c)The dynamic contents(some data which may come from database) is converted by entering appropriate arabic characters in database.
    4)Where ever there is few word changes(eg description,label etc) planning to put that in a properties file
    with appropraite arabic characters.
    Will the above points make sense.Or is there a specific or better way of doing this.
    User will be opting english or arabic thro a link from website.
    Can anybody help me on this. Thanks in advance Sarath

    Here are a few resources that might help:
    http://developer.java.sun.com/developer/technicalArticles/Intl/MultilingualJSP/
    http://www.sun.com/developers/gadc/technicalpublications/articles/iws6.html
    http://www.sun.com/developers/gadc/technicalpublications/articles/apache.html
    Hope this helps,
    John O'Conner

  • Convertion of HTML to Text

    Hai,
    Please suggest me how to convert the HTML to Web format

    hii,
             you convert the pdf format file to text file by checking out in the properties before uploading, so that u can easily upload the file.
    with regards,
    sumanth reddy

  • How to convert word documents to html page in sharepoint online 2013

    Hi,
    I am new SharePoint and still learning it.
    I have been tasked to do the following on office 365 E3 SharePoint 2013 Online edition.
    1) I have to create a Web page in asp.net
    2) This page needs to show document from a given SharePoint folder and bind them in a grid or dropdown on the asp .net web page
    3) On selecting the document from the drop down or gird (on asp .net webpage), I need to show the SharePoint word document as HTML on the webpage (something like word to html) Note: These SharePoint word document may contain Images, bullets, tables etc. 
    What I have been able to do till now
    1) I have been able to connect to SharePoint from ASP .net application.
    2) I have been able to retrieve document from a specific SharePoint folder.
    3) Read the document from SharePoint folder and bind them to a drop down on the asp .net page.
    What is missing?
    I am not aware about any API that SharePoint Online provides to convert Word document to HTML. Any code sample or reference on how to will be much appreciated. 
    I am not also not sure what is the best way of achieving the functionality this?
    Thanks 
    Krishna

    If this was SharePoint server then it would be easy however in O365 You need to create a app which will use the word automation service and below is  powershell which you can use for the conversion:-
    # This script will convert Docx to PDF using word automation and similarly it can be used to convert to HTML
    $wordFile="http://contoso/kick.docx"
    $pdfFile="http://contoso/kick.pdf"
    $wasp = Get-SPServiceApplicationProxy | where { $_.TypeName -eq "Word Automation Services Proxy" }
    $site = Get-SPSite "http://contoso"
    $ConvertJob = New-Object Microsoft.Office.Word.Server.Conversions.SyncConverter($wasp)
    $ConvertJob.UserToken = $site.UserToken
    $ConvertJob.Settings.UpdateFields = $false
    $ConvertJob.Settings.OutputFormat = "PDF"
    $ConvertJob.Convert($wordFile, $pdfFile)

  • How to convert html file to master file in sharepoint branding

    How to convert HTML file to master file in SharePoint branding Programmatically

    Hi,
    According to your post, my understanding is that you want to convert HTML file to master file.
    You can use Design Manager to achieve it.
    On STEP 4 Edit Master Pages and clicked on the option at the top to
    Convert an HTML file to a SharePoint master page.
    Once completed, make sure the Status is set to Conversion Successful
    For more information, please refer to:
    SharePoint 2013 – Design Manager – Convert HTML to Master Page
    Best Regards,
    Linda Li
    Linda Li
    TechNet Community Support

  • HOW TO CONVERT A XML FILE TO HTML FILE FORMAT IN WINDOWS APPLICATION

    Hi iam a fresher iam working on a project in that i should convert the data in xml file to html file. I dont have any idea regarding this can anyone help me how to convert the xml file to a html file format. I just written the code till how to read the xml
    file. Now i stucked how to write the code for converting to html format.
    Thanks and Regards,
    Dileep.

    Hi iam a fresher iam working on a project in that i should convert the data in xml file to html file. I dont have any idea regarding this can anyone help me how to convert the xml file to a html file format. I just written the code till how to read the xml
    file. Now i stucked how to write the code for converting to html format.
    Thanks and Regards,
    Dileep.
    Hello,
    For converting xml file to html, we could refer to the way shared in the following thread which uses an XSLT stylesheet to transform the XML into another format using the
    XslTransform class.
    http://www.codeproject.com/Articles/12047/How-to-Convert-XML-Files-to-HTML
    Regards.
    Carl
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey.

  • How to convert CLOB data (now it is in html format) to Normal text format

    Hi,
    Can anybody let me know the solution for how to convert CLOB data into normal Text.In my case the table column having CLOB datatype and the data is in html format.when i run the report the column is displaying html tags .Now i need to convert that html tags into normal text.
    Pl. let me know if any one know the solution.
    Regards,
    Thulasi.K

    LONG has been depricated since 8i so I don't believe there is a general solution to go backwards short of reloading the data.
    Justin

Maybe you are looking for