Oracle Fusion Data Intelligence Idea Lab

Welcome to the Oracle Analytics Community: Please complete your User Profile and upload your Profile Picture

Use of CSS for customization

More Information Requested
71
Views
3
Comments
Rank 2 - Community Beginner

Hi All,

Can we use CSS in FAW or any idea how to implement it here.


Regards,

Ravi

3
3 votes

More Information Requested · Last Updated

Welcome!

It looks like you're new here. Sign in or register to get started.

Comments

  • Rank 1 - Community Starter

    Hello Ravi,


    Yes, you can use CSS (Cascading Style Sheets) for customization in FAW (presumably Frequently Asked Questions or a similar context). To implement CSS, follow these steps:


    1. Inline CSS: You can apply CSS directly within the HTML tags. For example:


      ```html

      <p style="color: blue; font-size: 16px;">This is a customized paragraph.</p>

      ```


    2. Internal CSS: You can also embed CSS within the HTML document using the `<style>` tag. Place this tag within the document's `<head>` section.


      ```html

      <head>

        <style>

          p {

            color: blue;

            font-size: 16px;

          }

        </style>

      </head>

      <body>

        <p>This is a customized paragraph.</p>

      </body>

      ```


    3. External CSS: Create a separate CSS file (e.g., style.css) and link it to your HTML document.


      ```html

      <head>

        <link rel="stylesheet" type="text/css" href="style.css">

      </head>

      ```


      In style.css:

      ```css

      p {

        color: blue;

        font-size: 16px;

      }

      ```


    Ensure that you have the necessary permissions to apply custom styles, and consider any platform-specific restrictions. Experiment with these methods to achieve the desired customization in your FAW.


    Best regards,

    [Iqra Technology]

  • Rank 1 - Community Starter

    Hello Ravi,


    Yes, you can use CSS (Cascading Style Sheets) for customization in FAW (presumably Frequently Asked Questions or a similar context). To implement CSS, follow these steps:


    1. Inline CSS: You can apply CSS directly within the HTML tags. For example:


      ```html

      <p style="color: blue; font-size: 16px;">This is a customized paragraph.</p>

      ```


    2. Internal CSS: You can also embed CSS within the HTML document using the `<style>` tag. Place this tag within the document's `<head>` section.


      ```html

      <head>

        <style>

          p {

            color: blue;

            font-size: 16px;

          }

        </style>

      </head>

      <body>

        <p>This is a customized paragraph.</p>

      </body>

      ```


    3. External CSS: Create a separate CSS file (e.g., style.css) and link it to your HTML document.


      ```html

      <head>

        <link rel="stylesheet" type="text/css" href="style.css">

      </head>

      ```


      In style.css:

      ```css

      p {

        color: blue;

        font-size: 16px;

      }

      ```


    Ensure that you have the necessary permissions to apply custom styles, and consider any platform-specific restrictions. Experiment with these methods to achieve the desired customization in your FAW.


    Best regards,

    [Iqra Technology]

  • The above comments are true for OTBI but not for FAW/FDI. There is a template feature being considered that would be able to apply a predefined color palette across a number of reporting elements but it would not be css directly.

    What is the css intended to be used for?

Welcome!

It looks like you're new here. Sign in or register to get started.