Change text "link" color only in Spry Tab content area

I need to have multiple text link colors in my site for light
and dark background colors. The only regions in my site that have a
white background are in the Spry Tab Panel content area. I can't
figure out how to change the text color for text links in the spry
content only. I tried to add a:link ..etc... to the style sheet,
but it did not effect anything
(I also need to clean my style sheet (s). But that comes
next.
Here
is a Link to a Sample Page in my site
null

Here is the SpryTabbedPanels style sheet in my site. I can't
seem to figure out the changes I need to make to effect the content
area.
I tried to add the following (see .TabbedPanelsContentGroup
below)
a: link {
color: #0099CC;
text-decoration: none
a:active {
color: #99CC33;
text-decoration: none
a:visited {
color: #0099CC;
text-decoration: none
a:hover {
color: #99CC33;
text-decoration: underline
@charset "UTF-8";
/* SpryTabbedPanels.css - version 0.4 - Spry Pre-Release 1.6
/* Copyright (c) 2006. Adobe Systems Incorporated. All rights
reserved. */
/* Horizontal Tabbed Panels
* The default style for a TabbedPanels widget places all tab
buttons
* (left aligned) above the content panel.
/* This is the selector for the main TabbedPanels container.
For our
* default style, this container does not contribute anything
visually,
* but it is floated left to make sure that any floating or
clearing done
* with any of its child elements are contained completely
within the
* TabbedPanels container, to minimize any impact or
undesireable
* interaction with other floated elements on the page that
may be used
* for layout.
* If you want to constrain the width of the TabbedPanels
widget, set a
* width on the TabbedPanels container. By default, the
TabbedPanels widget
* expands horizontally to fill up available space.
* The name of the class ("TabbedPanels") used in this
selector is not
* necessary to make the widget function. You can use any
class name you
* want to style the TabbedPanels container.
.TabbedPanels {
margin: 0px;
float: right;
clear: none;
width: 82%; /* IE Hack to force proper layout when preceded
by a paragraph. (hasLayout Bug)*/
padding-top: 0px;
padding-right: 0px;
padding-bottom: 2px;
padding-left: 0px;
/* This is the selector for the TabGroup. The TabGroup
container houses
* all of the tab buttons for each tabbed panel in the
widget. This container
* does not contribute anything visually to the look of the
widget for our
* default style.
* The name of the class ("TabbedPanelsTabGroup") used in
this selector is not
* necessary to make the widget function. You can use any
class name you
* want to style the TabGroup container.
.TabbedPanelsTabGroup {
margin: 0px;
padding: 0px;
/* This is the selector for the TabbedPanelsTab. This
container houses
* the title for the panel. This is also the tab "button"
that the user clicks
* on to activate the corresponding content panel so that it
appears on top
* of the other tabbed panels contained in the widget.
* For our default style, each tab is positioned relatively 1
pixel down from
* where it wold normally render. This allows each tab to
overlap the content
* panel that renders below it. Each tab is rendered with a 1
pixel bottom
* border that has a color that matches the top border of the
current content
* panel. This gives the appearance that the tab is being
drawn behind the
* content panel.
* The name of the class ("TabbedPanelsTab") used in this
selector is not
* necessary to make the widget function. You can use any
class name you want
* to style this tab container.
.TabbedPanelsTab {
position: relative;
top: 1px;
float: left;
padding: 4px 10px;
margin: 0px 1px 0px 0px;
background-color: #CCCC99;
list-style: none;
border-left: solid 1px #CCC;
border-bottom: solid 1px #999;
border-top: solid 1px #999;
border-right: solid 1px #999;
-moz-user-select: none;
-khtml-user-select: none;
cursor: pointer;
font-family: sans-serif;
font-size: 12px;
font-weight: bold;
color: #000000;
/* This selector is an example of how to change the appearnce
of a tab button
* container as the mouse enters it. The class
"TabbedPanelsTabHover" is
* programatically added and removed from the tab element as
the mouse enters
* and exits the container.
.TabbedPanelsTabHover {
background-color: #99CC33;
color: #000000;
/* This selector is an example of how to change the
appearance of a tab button
* container after the user has clicked on it to activate a
content panel.
* The class "TabbedPanelsTabSelected" is programatically
added and removed
* from the tab element as the user clicks on the tab button
containers in
* the widget.
* As mentioned above, for our default style, tab buttons are
positioned
* 1 pixel down from where it would normally render. When the
tab button is
* selected, we change its bottom border to match the
background color of the
* content panel so that it looks like the tab is part of the
content panel.
.TabbedPanelsTabSelected {
background-color: #FFFFFF;
border-bottom: 1px solid #EEE;
color: #000000;
/* This selector is an example of how to make a link inside
of a tab button
* look like normal text. Users may want to use links inside
of a tab button
* so that when it gets focus, the text *inside* the tab
button gets a focus
* ring around it, instead of the focus ring around the
entire tab.
.TabbedPanelsTab a {
color: black;
text-decoration: none;
/* This is the selector for the ContentGroup. The
ContentGroup container houses
* all of the content panels for each tabbed panel in the
widget. For our
* default style, this container provides the background
color and borders that
* surround the content.
* The name of the class ("TabbedPanelsContentGroup") used in
this selector is
* not necessary to make the widget function. You can use any
class name you
* want to style the ContentGroup container.
.TabbedPanelsContentGroup {
clear: both;
border-left: solid 1px #CCC;
border-bottom: solid 1px #CCC;
border-top: solid 1px #999;
border-right: solid 1px #999;
background-color: #FFFFFF;
color: #000000;
a: link {
color: #0099CC;
text-decoration: none
a:active {
color: #99CC33;
text-decoration: none
a:visited {
color: #0099CC;
text-decoration: none
a:hover {
color: #99CC33;
text-decoration: underline
/* This is the selector for the Content panel. The Content
panel holds the
* content for a single tabbed panel. For our default style,
this container
* provides some padding, so that the content is not pushed
up against the
* widget borders.
* The name of the class ("TabbedPanelsContent") used in this
selector is
* not necessary to make the widget function. You can use any
class name you
* want to style the Content container.
.TabbedPanelsContent {
padding: 4px;
/* This selector is an example of how to change the appearnce
of the currently
* active container panel. The class
"TabbedPanelsContentVisible" is
* programatically added and removed from the content element
as the panel
* is activated/deactivated.
.TabbedPanelsContentVisible {
/* Vertical Tabbed Panels
* The following rules override some of the default rules
above so that the
* TabbedPanels widget renders with its tab buttons along the
left side of
* the currently active content panel.
* With the rules defined below, the only change that will
have to be made
* to switch a horizontal tabbed panels widget to a vertical
tabbed panels
* widget, is to use the "VTabbedPanels" class on the
top-level widget
* container element, instead of "TabbedPanels".
/* This selector floats the TabGroup so that the tab buttons
it contains
* render to the left of the active content panel. A border
is drawn around
* the group container to make it look like a list container.
.VTabbedPanels .TabbedPanelsTabGroup {
float: left;
width: 10em;
height: 20em;
background-color: #CCCC99;
position: relative;
border-top: solid 1px #999;
border-right: solid 1px #999;
border-left: solid 1px #CCC;
border-bottom: solid 1px #CCC;
/* This selector disables the float property that is placed
on each tab button
* by the default TabbedPanelsTab selector rule above. It
also draws a bottom
* border for the tab. The tab button will get its left and
right border from
* the TabGroup, and its top border from the TabGroup or tab
button above it.
.VTabbedPanels .TabbedPanelsTab {
float: none;
margin: 0px;
border-top: none;
border-left: none;
border-right: none;
/* This selector disables the float property that is placed
on each tab button
* by the default TabbedPanelsTab selector rule above. It
also draws a bottom
* border for the tab. The tab button will get its left and
right border from
* the TabGroup, and its top border from the TabGroup or tab
button above it.
.VTabbedPanels .TabbedPanelsTabSelected {
background-color: #CCCC99;
border-bottom: solid 1px #999;
/* This selector floats the content panels for the widget so
that they
* render to the right of the tabbed buttons.
.VTabbedPanels .TabbedPanelsContentGroup {
clear: none;
float: left;
padding: 0px;
width: 30em;
height: 20em;

Similar Messages

  • How do I change to background color in the open tabs; currently grey with black text, hard to read.

    In FF 4.0 can I change the background color of the open tabs. Currently it is grey with black type. A lighter background would be easier to read.
    Thanks, TJH

    Download this addon: https://addons.mozilla.org/en-us/firefox/addon/stratiform/ It allows you change the color of the tabs, plus many other options.

  • Changing individual link colors

    I am making a website where I want a certain link to display in red while the other links stay white. I went into the page properties to set the link colors, but I cannot figure out how to individually change the colors for certain links. When I changed the link color properties, it does so for all the links. Is this possible to set individual link colors, and how would I go about doing it? Thank you.

    Let's say you want to have red links in your #header and green links in your #footer.
    CSS:
    #header a {text-decoration:none}
    #header a:link {color:red}        /**unvisited**/
    #header a:visited {color:gray}  /**visited**/
    #header a:hover,                   /**on mouse over**/
    #header a:active,                  /**on click**/
    #header a:focus                   /**on tab key/active in IE**/
    {text-decoration:underline}
    #footer a {text-decoration:none}
    #footer a:link {color:green}
    #footer a:visited {color:yellow}
    #footer a:hover,
    #footer a:active,
    #footer a:focus 
    {text-decoration:underline}
    HTML:
    <div id="header">
    <a href="some-link.html">Link in the header</a> |
    <a href="some-link.html">Link in the header</a> |
    <a href="some-link.html">Link in the header</a> |
    </div>
    <div  id="footer">
    <a href="some-link.html">Footer link</a> |
    <a href="some-link.html">Footer link</a> |
    <a href="some-link.html">Footer link</a> |
    </div>
    For more on CSS pseudo classes:
    http://www.w3schools.com/css/css_pseudo_classes.asp
    Nancy O.
    Alt-Web Design & Publishing
    Web | Graphics | Print | Media  Specialists
    http://alt-web.com/
    http://twitter.com/altweb

  • How to change the background color only for one HTML-Portlet?

    Hi all,
    I have created a HTML-Portlet in my root-page. The root page have a style: Main-Style.
    I want to change the background-color only for this one HTML-Portlet:
    <html>
    <header><title>Test</title></header>
    <body bgcolor="#999999">
    Test
    </body>
    </html>
    But this does not work...
    When I use the CSS, then it will change the background-color for the root-page too.
    Thans
    Leonid Pavlov

    could you try this
    <table bgcolor="#999999">
    <tr>
    <td>
    test
    </td>
    </tr>
    </table>
    I don't think you need <html><header><title>Test</title></header>
    <body></body></html> for your HTML-Portlet.

  • Change Visited Link Color onClick of EPCM function

    Hi we have a link within an iview which when clicked opens another iview in the Portal Content Area. We are achieving that using EPCM.doNavigate function. The requirement is to change the link color when visited. We tried using both style sheet and also this.style.color, however, it doesn't take into affect. The same thing when used with a normal href or a js function changes its color.
    response.write("<td style='padding: background='"strImagePath"/header-background.gif'><a href=\"" + strQuickLinkName + "\"" +  " onclick=\"EPCM.doNavigate(\'" + strChildNodeName + "\'); return false;\" class='Archive'>Archive</a></td>");
    Is it that EPCM function doesn't act like normal java scripts or do we need to use any other alternative approach?

    On criagslist, however, it doesn't work.
    That sounds odd. When I visit craigslist, the links are blue; they turn purple when I hover over them, and orange when I actually click on them. And since it works on other sites, I'll venture a guess that the site was created with Windows users in mind, so it doesn't adhere to web standards, which is why it works fine with IE and Firefox, since they're both prominent browsers on Windows.
    Mulder

  • How can I change the link color css in one module but not the whole site?

    I have a site built in muse but using modules from BC.  I changed the link color in the css for the online store and blog but of course it is applying it to everypage.  Is there a way to change the link color in an individual BC module instead of the whole site.?  I'm new to CSS obviously.
    Thanks
    Josh

    I don't think you can do it right in Muse but you can easily if you have access to the code of the page and the css file.
    You need to create a css class something like:
    .secondLink a      {     /*  secondLink can be any class name, I just chose that randomly
         color: #990000;     /* of course substitute your color code in there
    Then in your code add:
    class="secondLink"
    to your link's <a> tag. This will give any links with the class of secondLink the color assigned. Hope that helps get you started.

  • Help, Spry Tabbed Panels are causing links not to work

    Here is the page: http://www.spalutions.com
    Here are the trouble spots:
    Menu at very top of page
    Home | Contact Us | Site Map
    Links within the panels
    Email link at the bottom of the content area
    Any help would be greatly appreciated!

    Fascinating.
    The Validator found three important errors you might fix to see if they help resolve the problem:
    at about line 107:
    <div class="editable"div id="contentWrapper">
    at about line 197:
    <div class="editable" div id="footer2"></div>
    and
    id="footer" twice on page
    After you fix these, run the Validator again: http://validator.w3.org/check?verbose=1&uri=http%3A%2F%2Fwww.spalutions.com%2Findex.html to find any more important issues.
    Then let us know if that helped!
    E. Michael Brandt
    www.divahtml.com
    www.divahtml.com/products/scripts_dreamweaver_extensions.php
    Standards-compliant scripts and Dreamweaver Extensions
    www.valleywebdesigns.com/vwd_Vdw.asp
    JustSo PictureWindow
    JustSo PhotoAlbum, et alia

  • Editing  spry tab content  using  adobe contribute 4

    Hi Everyone,
    We have used Sprytabs for different tabs section for there respective pages.
    We are using Contribute CS4 for editing spry tabs content, But after study I have figured that we can't edit
    sprytabs using Contribue CS4
    Is there any way in contribute that we can edit Spry tab content in contribue CS4
    Thanks in advance!
    Rohit Yog

    Spry widget editing is allowed from Adobe Contribute CS5 version only. Please refer to http://blogs.adobe.com/contribute/2010/06/spry_widget_rendering.html

  • How to Display Repeat List In Spry Tab Content

    Hello,
    I am new to Spry. I thought I could just create an XML
    dataset, Insert a Spry Tabbed Panel, and then insert a Spry repeat
    list inside the Tabbed Content area of the Tabbed Panel. It is not
    working at all for me. Is this doable at all? If so, how?
    Thanks!

    hi,
    i have created an example in http://apex.oracle.com/pls/apex/f?p=44310:1:3623155419174978:::::
    username/password: demo/demo
    check, it may help you:)
    *please mark the thread answered if it done:)
    regards
    Little Foot

  • PHP Form in Spry Tabbed Content Div

    I have placed some PHP forms inside some Spry Tabbed Content
    divs. When the forms are submitted, the page reloads with the
    default tabbed content displayed instead of the tab where the form
    is. If I click to the tab with the form, I can see the information
    PHP properly returned.
    Does anybody know how to make the Spry Tabbed Content script
    return to the tab that had focus when a PHP form is submitted
    instead of the default tab?
    Thanks in advance for any advice.

    Hi,
    On the main forum page you will have read the following.
    Announcement: New to Spry, or  the Spry forums?
    Hide Details
    Before you post a topic please verify that:
    You are using the latest Spry files
    The latest version of the Adobe Spry Framework is 1.6.1, this is the same version that ships with Dreamweaver CS4. If you use Dreamweaver CS3 (uses Spry 1.4), its wise to upgrade your files to the latest version. This can easily be done using the Spry Updater that can be found here.
    After you have upgraded and not removed the remarks from the Spry files, we will have another look at it.
    Ben

  • Open KM Link(to KM Resource) in portal content area

    Hello,
    Open KM Link (not external link) created in  KM to html/htm  page located in KMcontent in Portal content area.
    Is there any way can I open KM link created in same window (Portal content area) not in new window? By default it always opens in new window? From these links I created KM Navigation iView layoutset as LinkList explorer.
    Thanks

    Hi Mark,
    As mentioned by VS..look into the iview property and then checkout the "Launch In" or "Display State" (sry cannot remember by hard) and set it according to what VS indicated above. This way, when you click on the iview from your Portal (not preview), it will display in the content area.
    Additional info on iview properities.
    http://help.sap.com/saphelp_nw70/helpdata/EN/69/0ccb3ffe0ad969e10000000a11405a/frameset.htm
    Hope that helps.
    Ray

  • Sprytabs...how to have tabs content area be closed initially

    hello,
    Question re SpryTabs...how would I edit the code so all tab
    content be initially closed in a particular set of tabs? In other
    words so the tabs are showing but the content area is collapsed. I
    can't see any info related to this other than having a default
    tab/content area be open. This in order to save some vertical space
    in a particular page.
    Thanks

    hello,
    Question re SpryTabs...how would I edit the code so all tab
    content be initially closed in a particular set of tabs? In other
    words so the tabs are showing but the content area is collapsed. I
    can't see any info related to this other than having a default
    tab/content area be open. This in order to save some vertical space
    in a particular page.
    Thanks

  • How to change text + links in footer of existing template

    Hello,
    I need to change the text and links on the template footer that goes to all TABs. (Home, Articles, About Bluemont, BCA, Contact Us).The file is named NavigationBlank.dwt."
    This footerwas created to link visitors to our "join or contribute" page on another site. Now I want to stop using that external site and build the capacity to take memberships within the BluemontVA.org site itself. However the template footer can't be changed so easily as text on a page.
    I am webmaster for a local nonprofit (web address =  www.BluemontVA.org), but work on a website I inherited. It is a wonderful design, but I don't fully understand it. I have not worked with templates before.
    I have read O'Reilly on "Adding a basic editable region"  in a template, but need further help.
    A couple questions worry me:
    How much damage may I have done already by trying? For example, I do seem to have removed the old text/links and added a new text message on the NavigationBlank.dwt page -- but these changes do not show up on the other TAB pages.
    Also, when I place the cursor n the design side  it no longer tracks to the corresponding spot on the code view. (the cursor shows up in code view way above where it is supposed to be by the text). This is true for the home page and also for several pages I took a look at.
    Can I follow instructions to change the template from any of the pages on which it appears? Or do I have to be at NavigationBlank.dwt?
    Thanks for any help or advice you can provide.

    I'm confused.
    Working With Dreamweaver Templates (.dwt files).
    PART 1
        1. Create a page with all the sitewide elements (common header, footer, sidebar,  CSS styles, etc..) that you will need for your project.   This requires some careful pre-planning even for small web sites.
       2. Validate your code & test this prototype page in all major browsers. 
       3. When you're completely satisfied with the page layout, SaveAs Template.   DW will save this as a .dwt file in a site folder called Templates.
       4. DW will ask you to add Editable Regions for stuff that will change from page to page.   Do this and SAVE.
       5. Close your Template.dwt file.
    PART 2
       1. File > New Page > from Template.  Select the template you wish to use.  Hit OK.
       2. This is a child page.  An exact duplicate of your Template however you can only edit content within editable regions.  Everything else is locked.
       3. SaveAs index.html (your home page) or some-other-filename.html.
    PART 3
       Repeat PART 2 for each additional site page required.
    PART 4
        1. Open your main TEMPLATE file and add a navigation menu with links to your site pages.  Do not put this into an Editable Region!  If you do it won't show up on child pages.
       2. SAVE.
       3. DW will ask if you want to populate changes to child pages.  Hit yes.
       4. Publish all site pages to your server.
    PART 5
       If you should ever need to edit your TEMPLATE .dwt file, Repeat PART 4.
    Nancy O.
    Alt-Web Design & Publishing
    Web | Graphics | Print | Media  Specialists 
    http://alt-web.com/
    http://twitter.com/altweb

  • Change visited link color in Safari 5.1.3

    Visited link colors in Safari, most notably visited Google links when I return to the search page, don't change colors as they used to do...  Actually, I think it's been that way for a long time (years) now but I am just now coming back around to being interested in why and if there is a way to get back to the days where new links were BLUE and visited links were GREEN (or whatever color you wanted)... 
    Is this still possible with the new Safari and if so, how do you go about setting this visted link color preference???
    thanks... bob...

    This appears to be an issue affecting most versions of Safari from about version 5 onwards.
    I recently experienced it with Safari version 5.0.6 and eventually found a fix adequate for my purposes.
    1 - Sometimes simply selecting 'Private Browsing' (on Safari menu) and then deselecting it cures the problem.
    2 - If that does not work I use the following Terminal command which has, so far, worked every time:
    defaults write com.apple.Safari RegisteredSafariSyncClient -bool false
    I must point out that I do not intend to use any sync services but it appears that if Safari gets confused it is necessary to use this command to reset its sync services.
    3 - If you don't like using the Terminal command you could trash the following preference file although this more brutal approach is more likely to lose data:
    ~/Library/Preferences/com.apple.Safari.plist
    Quit from Safari before attempting 2 or 3.
    I have only tested the Terminal command on Safari 5.0.6 on a Leopard G4 without any user defined sync services but it will probably work on other versions and OSs. It is always safest to backup first.

  • How do you change text bubble color on iPhone4?

    I do not want to Jailbreak my iphone4 but I want to change the bubble color on my texts. I see on the iOS 4 preview that the text bubble color is light blue. How do I change mine?

    Classic Frost wrote:
    iMessage is completely free only if you are on wifi. If you are on 3G, it will use your carrier to send an iMessage, therefore it counts towards your messaging rates. If the message is green to another iPhone user, that means that your service hasn't recognized it as an iPhone.
    iMessages do NOT count toward messaging rates on 3G. They use the 3G data allowance. Messages to other iOS users can be in green (sent as SMS) if the user doesn't have an active data connection (either 3G or WiFi) at the time.

Maybe you are looking for

  • How do I transfer photos to a new PC w/o losing tag info?

    I am currently using PE6 in an old XP PC and want to use the same PE6 software in my new Windows 7 PC.  The sheer number of photos (>12K) make it nearly impossible to reorganize and retag everything from scratch!!  If a newer PE version would help me

  • FM/BAPI to create a accrual document in FBS1 ?

    Hi, Id any one aware of any BAPI or FM that can be used to create and accrual document through FBS1. Thanks,

  • Dynamically generated URLs

    Hello, I have an upload page on my site where visitors can upload PowerPoint files that will be used when they come to our school to do a presentation to a large assembly. I'd like to have another page on my site that dynamically (read automatically)

  • HP LaserJet p3005 prints black pages

    Hi I have a problem with a HP laserJet p3005 it prints always black pages (like this) i install a new toner cartridge but i still have the same problem. Please help me to troubleshoot my problem. Thanks.

  • Need to tune the sql query

    Hi, PLease help me to tune the query select primary_rep, rep_ssn, nvl(product_type_desc, 'UNKNOWN') as productName, ROUND(sum(contributions)) as contribution, ROUND(sum(withdrawls)) as withdrawls, ROUND(sum(netflow)) as netflow from dev.NETFLOW_VIEW_