Categories
- All Categories
- 10 Oracle Analytics Sharing Center
- 13 Oracle Analytics Lounge
- 209 Oracle Analytics News
- 41 Oracle Analytics Videos
- 15.6K Oracle Analytics Forums
- 6.1K Oracle Analytics Idea Labs
- Oracle Analytics User Groups
- 76 Oracle Analytics Trainings
- 14 Oracle Analytics Data Visualizations Challenge
- Find Partners
- For Partners
Use of CSS for customization

Hi All,
Can we use CSS in FAW or any idea how to implement it here.
Regards,
Ravi
Comments
-
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]
0 -
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]
0 -
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?
0