As of December 1, 2020, Focal Point is retired and repurposed as a reference repository. We value the wealth of knowledge that's been shared here over the years. You'll continue to have access to this treasure trove of knowledge, for search purposes only.
Join the TIBCO Community TIBCO Community is a collaborative space for users to share knowledge and support one another in making the best use of TIBCO products and services. There are several TIBCO WebFOCUS resources in the community.
From the Home page, select Predict: WebFOCUS to view articles, questions, and trending articles.
Select Products from the top navigation bar, scroll, and then select the TIBCO WebFOCUS product page to view product overview, articles, and discussions.
Request access to the private WebFOCUS User Group (login required) to network with fellow members.
Former myibi community members should have received an email on 8/3/22 to activate their user accounts to join the community. Check your Spam folder for the email. Please get in touch with us at community@tibco.com for further assistance. Reference the community FAQ to learn more about the community.
I have a page where I have tab panels and Accordian panels. I was able to get the page headers n these to do the background colors I want, however now I need to left align the title for the Accordian only.
I tried adding text-align:left; to the logic below and it does nothing. Is this something that can be done?
If it can be, how do I make it specific to the Accordian panel and not change all the page headers, which seems to be what my current logic would do.
You will need to first use the unique identifier (ID) of your accordion component, then also tell CSS to look for the "IBI_pageHeaderText" class. That class is present in the HTML DIV that wraps the page headers.
So, if my accordion has a unique identifier named "windowPanel2", it would be:
P.S. Forgot to mention that with CSS coding, a pound sign ("#") refers to a unique identifier, and a period (".") refers to a class. You seem to be able to understand what classes you need to make adjustments. If you know that, you just need to reference the ID of your component first to avoid changing other components on your HTML page. Spaces separate these CSS references as you go from left to right in the code.
By the way, I like your minty-chocolate color scheme you've got going there!This message has been edited. Last edited by: Squatch,
App Studio WebFOCUS 8.1.05M Windows, All Outputs
Posts: 594 | Location: Michigan | Registered: September 04, 2015
This worked great. However I have one more thing involved that is making it still not work quite right for me.
The Accordian and Tab panels I have are incorporated within each other. I have an Accordian and whithin that Accordian on each page are Tab Panels within the pages.
So when I tell it to do the text align for the Accordian specific, it wants to do it for everything within it including the Tabs. Now if I take and split it out it will work for each specifically so I know it worked otherwise.
The first CSS code affects both the accordion and the tab components, but the second CSS overrides this because it is accessing the tab component specifically. And it shouldn't matter what order the code is in.
App Studio WebFOCUS 8.1.05M Windows, All Outputs
Posts: 594 | Location: Michigan | Registered: September 04, 2015