Styles and Cascading Style Sheets ??

We have existing many procedures in RH5X that we have created
over the past two years. Our company has designed a new .css that
contains new styles. Is there anyway to easily and quickly apply
these new styles to our existing topics and projects?

Look at it this way. Your old style sheet had two styles
called black and white and the new one has red and green. How would
RoboHelp know that for black you want red and for white, you want
green?
I take it you cannot use the old style names to avoid this
problem. One solution is doing it manually. There is another but it
might not work so make sure you have a good backup, or two!
In your html you will find the styles look like this.
<p class="yourstylename">
You could do a multi file find and replace to change that to
<p class="yournewstylename">
With things like lists though it might not be perfect so it
wil require a lot of testing.
I am also curious that you have 75 RoboHelp licences to keep
procedures up to to date. It sounds like an expensive operation.
Just seems unusual. I would have expected these people to feed into
a smaller team but maybe there's more to it.

Similar Messages

  • Part 07 - Understanding and Using Cascading Style Sheets | Classroom: Basic Site Layout and Navigation in Dreamweaver | Adobe TV

    In this video you’ll continue to further customize your website using CSS or Cascading Style Sheets. With CSS you can control many visual aspects of the website efficiently and consistently.  Learn the basics of how CSS rules work and how you can easily take advantage of the power and flexibility of CSS in Dreamweaver including creating and editing your own CSS class.
    http://adobe.ly/wTlFxC

    some of these tutorials don't really work. changing the body image to scrolling or fixed doesn't change anything on my computer, and apparantly doesn't change anything on the version that the instructor is using either, since he never shows us the "before"

  • Cascading style sheets with htp procedures and functions

    I'm new to style sheets. I currently build dynamic web pages with database procedures using htp/htf. Can someone tell me how to use style sheets with this functionality.
    Thanks

    This is a good point to start learning about css:
    http://www.htmlhelp.com/reference/css/

  • Cascading Style Sheets are NOT written to the file system

    Hallo,
    On the "Cascading Style Sheets" page is written that: "The Cascading Style Sheets are written to the file system, so you can reference them in your HTML source code."
    I am true that if this works I can reference the css with something like this?
    <link rel="stylesheet" href="/i/sample.css" type="text/css">
    and do not need this style:
    <link rel="stylesheet" href="#APP_IMAGES#sample.css" type="text/css">
    <link rel="stylesheet" href="#WORKSPACE_IMAGES#sample.css" type="text/css">
    I have looked on the "Cascading Style Sheets" page: http://127.0.0.1:7780/apex/f?p=4000:37
    Are there some other preferences, options, etc. to set that this will be working?
    Thx for your help. Willi

    Hi,
    CSS files uploaded through Shared Components, Cascading Style Sheets are written into the database, so you would have to use:
    &lt;link rel="stylesheet" href="#WORKSPACE_IMAGES#sample.css" type="text/css"/&gt;You should be able to see these if you run the following in SQL Commands:
    SELECT * FROM APEX_APPLICATION_FILES
    WHERE UPPER(FILENAME) LIKE '%CSS%'Andy

  • Cascading Style Sheets in JEditorPane..

    I have created a Java program that displays an HTML page in a JEditorPane. The JEditorPane seems to have a problem displaying pages with internal Cascading Style Sheets. The app grabs an HTML file off my and displays it in the JEditorPane but the file does not display correctly. I have tested it with sites that use external Style Sheets and it seems to work fine.
    Does anyone know anything about this?
    Thanks, Jason

    Hi Jason,
    you could try to explicitly set the style sheet to one you pick by the following sample
          StyleSheet ss = getStyleSheet("style.css");
          HTMLEditorKit editorKit = new HTMLEditorKit();
          editorKit.setStyleSheet(ss);
          hd = (HTMLDocument) editorKit.createDefaultDocument(ss);method 'getStyleSheet' looks as follows
      private StyleSheet getStyleSheet(File cssFile)
            throws MalformedURLException, IOException
        StyleSheet ss = null;
        URL cssUrl = cssFile.toURL();
        BufferedReader br = new BufferedReader(
            new InputStreamReader(cssUrl.openStream()));
        ss = new StyleSheet();
        ss.loadRules(br, cssUrl);
        br.close();
        return ss;
      }hope this heps
    Ulrich

  • Owa_util.mime_header, Excel, and style sheets

    Does anyone know of a way to pass styles from Cascading Style Sheets to an Excel file? I'm using owa_util.mime_header('application/excel') to open the spreadsheet from a PL/SQL procedure formatted for html using htp and htf tags. I can put the <font> tags back into the code if I have to, but I'd rather not...
    Thanks,
    Dave

    tward wrote:
    I'm trying to use:
    owa_util.mime_header('application/vnd.ms-excel', FALSE)
    htp.p('Content-Disposition: filename="test.xls"');
    owa_util.http_header_close;
    htp.htmlopen;
    htp.bodyopen;
    htp.tableopen(cattributes=>'border="1" width="100%" align="CENTER"');
    htp.tablerowopen;--(cattributes => 'align="LEFT", bgcolor="LIGHTGRAY"');
    htp.tableheader(cattributes=>'width="10%"', cvalue => 'Header 1');
    htp.tableheader(cattributes=>'width="15%"', cvalue => 'Header 2');
    htp.tableheader(cattributes=>'width="20%"', cvalue => 'Header 3');
    htp.tableheader(cattributes=>'width="10%"', cvalue => 'Header 4');
    htp.tableheader(cattributes=>'width="20%"', cvalue => 'Header 5');
    htp.tableheader(cattributes=>'width="25%"', cvalue => 'Header 6');
    htp.tablerowclose;
    htp.tableclose;
    htp.bodyclose;
    htp.htmlclose;
    My understanding is that this will open the window to Open/Save/Cancel the output in Excel.....
    But for some reason, it simply displays in a browser window.....
    The first line in the windows is:
    Content-type: application/vnd.ms-excel Content-Disposition: filename="test.xls"
    followed by the HTML Table....
    Why will it not open in Excel for me?Something is not getting recognized properly.
    Try hard-coding the functionality you want into a static HTML document. Then work on using owa_util.mime_header or Like MichaelS suggested htp.p surrounded by any needed tags w/options to duplicate the working static document's functionality.

  • BI XI 4.0 Cascading Style Sheets

    In BI XI 4.0 can you change the relative horizontal position of a table in the Cascading Style Sheets to always be 0 cm vs. 32 cm?

    Minty Baffles wrote:
              >
              > css files work just fine with 6.0 and 6.0 sp1.
              >
              > <link rel="stylesheet" type="text/css"
              > href="<%=request.getContextPath()%>/default.css">
              >
              > seems so obvious have i missed something in your question?
              >
              > "Kumar Allamraju" <[email protected]> wrote in message
              > news:[email protected]..
              > > Pls file a bug report with [email protected]
              > >
              > > --
              > > Kumar
              > >
              > > Garvin F Dean wrote:
              > >
              > > > Are these supported in 6.0? We're using Tomcat 3.2 which has no
              > > > problem, but we can't seem to get the css files to be served by WLS.
              > > > All help appreciated.
              > > >
              > > > Garvin
              > >
              We're using custom tags, and the style sheets are actually loaded via
              the custom tags. Ironically, every is served "as expected" on the
              Tomcat server, however, two interesting things occur when we serve our
              application in WLS: 1. The style sheets don't get parsed at all on
              netscape. 2. On IE, the images don't show.
              Normally, I would suspect the issues were browser related, except that
              none of these issues occur when hosting the application on Tomcat.
              Thanks.
              [garvin.dean.vcf]
              

  • Cascading Style Sheet

    When I attempt to either create a new Cascade Style Sheet or open an existing on in Designer (Microsoft 8) I get an error message saying that there is HTML code and the task cannot be completed.

    This forum is actually about the Cloud, not about using individual programs
    Once your program downloads and installs with no errors, you need the program forum
    If you start at the Forums Index http://forums.adobe.com/index.jspa
    You will be able to select a forum for the specific Adobe product(s) you use
    Click the "down arrow" symbol on the right (where it says ALL FORUMS) to open the drop down list and scroll
    http://forums.adobe.com/community/indesign

  • Referencing CSS from Shared Components/Cascading Style Sheets

    Apex 4.0
    I've been placing my CSS style sheet in Shared Components/Cascading Style Sheets. And referencing it as follows <link type="text/css" rel="stylesheet" media="screen" href="#WORKSPACE_IMAGES#app300.css">.
    For weeks all has seemed to work fine. I make changes to app300.css in Cascading Style Sheets. Clear cache. And see my change.
    But suddenly it stopped working. More specifically my updates don't take. I firebug and look at the file under CSS and don't see my changes. app300.css is unchanged. Then I deleted app300.css from Shared Components/Cascading Style Sheets. The file is deleted. No longer in the Cascading Style Sheets panel. But the old file still appears when I look under firebug.
    Simply a brain cramp for me. I know this is probably obvious but I can't figure it out.

    Hi,
    If your file still recides in the database, you might want to try deleting it with a procedure from the wwv_flow_api package:
    set serveroutput on
    declare
      l_security_group_id number;
    begin
      select workspace_id into l_security_group_id
      from   APEX_040000.APEX_WORKSPACES;
      wwv_flow_api.set_security_group_id
          (p_security_group_id => l_security_group_id);
      wwv_flow_api.create_or_remove_file
        ( p_name           => 'app300.css'
        , p_location       => 'WORKSPACE'
        , p_mode           => 'REMOVE'
        , p_type           => 'CSS'
      commit;
    end;
    You can run this using SQL developer/ Toad or whatever program you use, but I don't think you can run in the SQL workshop of Apex.
    Run it as workspace owner.
    First part sets the apex engine to point to the correct workspace id in Apex, change "APEX040000" to match your version of Apex.
    Second part is the procedure that should remove your file from the database.
    Make sure you commit your changes and try to upload your css file again.
    Regards,
    Vincent
    http://vincentdeelen.blogspot.com

  • JSP + Cascading Style Sheet + Javascript problem

    Hello, I've got a JSP page that has included a Javascript (JS).
    In that JS, a Cascading Style Sheet (CSS) is included. Also on the JSP page, I have some code that makes use of the JS to create a Windows-style combobox, which is not available through raw HTML. The code is as follows:
    <BODY>
    <SCRIPT language="javascript" src="ComboBox.js"></SCRIPT>
    <SCRIPT language="javascript">
    dm=new ComboBox("dm")
    dm.add(
           new ComboBoxItem("barge",1),
           new ComboBoxItem("benluc",2),
           new ComboBoxItem("benlieeeeck",3),
           new ComboBoxItem("taco",4)
    </SCRIPT>
    <CENTER><H2>Choose Project Number</H2><CENTER>
    <FORM METHOD=POST ACTION="">
    <% //DB connection to populate the combo box %>
    <% // Database Connection Parameters
        String DB = "dbname",
        query = "",
        HOST = "jdbc:postgresql://URL:5432/",
        ACCOUNT = "username",
        PASSWORD = "password",
        DRIVER = "org.postgresql.Driver";
        // authentication properties
        Properties props = new Properties();
        props.setProperty("user", ACCOUNT);
        props.setProperty("password", PASSWORD);
        // load driver and prepare to access
        Class.forName(DRIVER).newInstance();
        Connection con = DriverManager.getConnection(HOST + DB, props);
        Statement stmt = con.createStatement();
        try{
        query= "SELECT * FROM Projects ORDER BY Name";
        ResultSet rs = stmt.executeQuery(query);
    %>
    Project S/O:
    <SELECT NAME=projid>
    <option value="dummy">Choose one...</option>
    <% while (rs.next() ) { %>
    <OPTION VALUE="<%=rs.getString("Name") %>">
    <%=rs.getString("Name")%> ,   <%=rs.getString("Desc")%>
    </OPTION>
    <% } %>
    </SELECT>The problem I am experiencing is that if I move the 2nd SCRIPT tag anywhere but where it is, it makes IE bomb and takes me to an error page. The error message is as follows:
    "Internet Explorer cannot open site http://myURL. Operation aborted."
    Any ideas?
    Haig

    I need help in this matter. Someone please reply. Thanks.

  • Cascading Style sheet modify for webi in 4.0

    Hi,
    we are planning to change company document style sheet.
    So i went through one document, I have few questions on it.
    1.what it mean  "The Cascading Style Sheest are derived from the W3C CSS" ?
    2. In document they mention that "The style sheet of a document is stored on the CMS, in the User settings" , I am not able to find it out.
    could some one help me out ?

    Hi,
    which SMP or Help.sap.com document did you go through ?   was it this one? http://help.sap.com/businessobject/product_guides/boexir4/en/xi4_ia_en.pdf
    In 4.0, the default values for the rendering and the style are stored into a file named WebiDefaultStylesheet.css stored in the server's images folder. (The defaultConfig.xml is an obsolete file from XI3.1)
    Note that for the BI 4.0, you would not be able to update the default style AFTER document creation. If you want to modify default style, you must :
    1. update the .css file stored in the images folder of your server installation or rich client :  C:\Program Files (x86)\SAPBusinessObjects\SAP BusinessObjects Enterprise XI 4.0\images\WebIDefaultStyleSheet.css and
    2 Then create a new webi document to see your style modification.
    In FP03, we completed the development of the default style edition by giving an easier and immediate way to update the css: You would be able to export/import the stylesheet from any webi document directly from the UI of the rich client or the applet.
    Regards,
    H

  • An invalid or empty reference to a Cascading Style Sheet file was specified.

    Hello,
    I am having an issue with a page layout that I created yesterday and that was running just fine before I left work.  I shut down my environment and system at the end of the day.  When I came in today and fired up SharePoint 2013 and SPD 2013, I
    noticed that when I attempted to open the Page-Layout I worked on yesterday I received this message:
    An invalid or empty reference to a Cascading Style Sheet file was specified. Valid references must specify only a filename that ends with a ".css"
    I have validated both the master page and the page-layout for malformed or incorrect css references but there are none.
    This kind of stuff drives me crazy with SP.  So much time spent chasing needles and the error message might have nothing to do with the real cause.
    Thank you for any and all help you can provide.
    Tim

    Hi Tim,
    Could you please reproduce the steps of creating the page layout today, and see if shutting down your environment and system affects something which might cause the issue?
    In addition, please check in ULS log per the issue timestamp and see if there is more error information can be help to find out the root cause.
    Regards,
    Rebecca Tu
    TechNet Community Support
    Please remember to mark the replies as answers if they help, and unmark the answers if they provide no help. If you have feedback for TechNet Support, contact
    [email protected]

  • Multiple style sheets 1 for background  and  adjustable content and 1 for layout

    H guys , I have 1 css that is attacthed to everypage of the site, this is the basic layout of the site , what I want and trying to do , is have another css for "each" page that has a different body back ground and the unique divs to that particular page !
    I've attached both css to the page but the only the layout css shows , so there's no bg or unique divs  showing , what do I have to do to get both to show on the page ? .. I've tried linking the 2 css togther but only the layout shows , so I'm pretty stuck .  many thanks in advance if you can help

    Yeah, it can be edited... but only by you!
    So CSS in the <head> and CSS in a style sheet can both work... but if you have 10 pages, each with it's own CSS in the <head>... and you have to go in and adjust some stuff... that means you must open 10 pages.. do the edits.. separately... then test each of the 10 pages..... separately..
    OR have a master CSS page... do all the edits at once, upload just one edited CSS page and then test the entire site... all at one time.
    That's the heart of CSS... Cascading Style Sheets... changes/edits you make will propagate/cascade down over your entire site...
    My advice... keep all your CSS in one (easily editable) file.
    Best wishes,
    Adninjastrator

  • I am forced to hold shift and refresh the page on 99% of the sites I visit. How do I fix this from happening? If I don't the pages are missing style sheets and etc.

    When ever I go to sites they half load or are missing style sheets. If I view the source for the page and click on a style sheet link I get the following error:
    Content Encoding Error
    The page you are trying to view cannot be shown because it uses an invalid or unsupported form of compression.
    If I hold shift and refresh the page loads as normal.
    It's happening on 99% of the sites I visit. I have disabled my plugins and add-ons.
    I do have some add-ons or plugins that I would like to remove completely but there is no uninstall or remove option, neither in regular or safe mode.

    '''I'm NOT buying a backup Computer till, Firefox will Run on Windows 8 !'''

  • XML page cannot be displayed cannot view XML input using XSL style sheet Please correct the error and then click the REfresh

    XML page cannot be displayed cannot view XML input using XSL style sheet Please correct the error and then click the REfresh

    Is the error message displayed in Firefox or in IE, or in a customized window that doesn't identify the browser?
    ''If it displays in Firefox:''
    It's possible that the Troubleshooter doesn't work correctly unless IE is your default browser. You could test that possibility by having IE make itself the default and testing the Troubleshooter again.
    ''If it displays in IE or embedded in another Microsoft application:''
    In a web search I found these suggestions:
    (1) Reset your Internet Explorer settings, according to http://answers.microsoft.com/en-us/ie/forum/ie8-windows_7/cannot-view-xml-using-xsl-style-sheet/ccfe80c6-c0db-4594-a7e3-475f9eac0e85
    (2) Try the System File Checker, according to http://ask-leo.com/why_do_i_get_the_xml_page_cannot_be_displayed_after_running_a_microsoft_troubleshooter.html
    Any luck?

Maybe you are looking for

  • Customizing RoboHelp Skins

    I'm running into a problem with the customization of my skin for RoboHelp I've created all of my own custom tabs and have linked them to their own separate page.  However, I'm limited to the number of tabs that I can have.  Is there a set amount of t

  • View this link and solve my issue PLS!

    Since no one has answered my question, I am providing a link that may shed some light on my issue. When the link opens the four panels will animate. What I don't want is for them to animate at the same time. What I do want is to animate in a sequence

  • BPC NW Installation - MSMQ Setup

    Hi Experts We are in process of BPC NW installation. One of the prerequisites for BPC installation in MSMQ installation. The installation guide says, MSMQ needs to be installated with domain controller rights and option of "Active Directory Integrati

  • Test if an item in a form exist already

    Hi, How do you test if an item in a form already exist? right now, What I did is to put try and catch statement on a dynamic form item? When it errors out, that's the time the item is added to the form. Thanks,

  • Adobe Photoshop Runtime error

    Hi I have Adobe Photoshop Elements 10 and when I now try to open it is says this. I Goggled it and was recommended this "Delete the state.dat file located at C:\Documents and Settings\ [User] \Application Data\Adobe\Online Services\Photoshop Elements