Categories
- All Categories
- 75 Oracle Analytics News
- 7 Oracle Analytics Videos
- 14K Oracle Analytics Forums
- 5.2K Oracle Analytics Idea Labs
- Oracle Analytics User Groups
- 40 Oracle Analytics Trainings
- 60 Oracle Analytics Data Visualizations
- 2 Oracle Analytics Data Visualizations Challenge
- 3 Oracle Analytics Career
- 4 Oracle Analytics Industry
- 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