Hover color for bullets

Here is what I want to do. I want to have a navigation list
that has about 15 links. Each page that these nav will go to will
have a different color scheme. I would like the bullet before the
text to come up a different color than the text hover. Right now I
have it set up that the text is white, the hover is grey. But I
want the bullet to be different...yellow, blue, red, all different
for each line. Can this be done?

here you go...
http://thepattysite.com/linkstyles3.cfm
Jo
"blondie265" <[email protected]> wrote in
message
news:ejg1km$l4o$[email protected]..
> Here is what I want to do. I want to have a navigation
list that has about
> 15
> links. Each page that these nav will go to will have a
different color
> scheme.
> I would like the bullet before the text to come up a
different color than
> the
> text hover. Right now I have it set up that the text is
white, the hover
> is
> grey. But I want the bullet to be different...yellow,
blue, red, all
> different
> for each line. Can this be done?
>

Similar Messages

  • Adobe Reader 9.0 - Disable Forms Highlight color show border hover color for fields for all user a

    Hello.
    I am installing Adobe Reader 9.0 onto a new windows xp corporate build for my company. We would like to have the Forms Preference "Highlight Color" Show border Hover Color for Fields checkbox unchecked by default for any user that logs onto the workstation. (All new WinXP profiles, and if possible, any existing profiles) Is there a registry entry that can be changed to ensure that this option is unchecked by default on our WinXP build?
    Thank you.

    bumping thread...
    I have downloaded the Adobe Reader 9.0 Custom Wizard install creator tool, but it still appears that I will need to know what registry key to change/import into the installer for this preference to be disabled by default for all users of the workstation that Adobe Reader 9.x is installed onto.
    Any and all help is greatly appreciated.
    Thank you.

  • Changing hover color for TabNavigator tabs

    I was able to change the background color of selected tab to
    Navy and the others to Medium Blue. The foreground color is set to
    White. The default color for the hover seems to be black, so when I
    pass over the selected tab you can not read the text.
    How do you change the hover color?

    Try setting the textRollOverColor of your selected tab style.

  • Disabling on hover color for GridViewItem

    What more should be added to:
    <DataTemplate>
    <Grid>
    <VisualStateManager.VisualStateGroups>
    <VisualStateGroup x:Name="CommonStates">
    <VisualState x:Name="PointerOver"/>
    </VisualStateGroup>
    </VisualStateManager.VisualStateGroups>
    </Grid>
    </DataTemplate>
    To GridView.ItemTemplate to prevent On hover effect?

    Hi,
    You'll need to edit the GridViewItem control template and turn off highlighting by removing the visual state and/or the visuals related to highlighting. Look for the "PointerOver" visual part and remove it and the animations that target it. Alternatively,
    if you want all ListView/GridViews in your application to not have a hover then you can change the ListViewItemSelectedPointerOverBackgroundThemeBrush brush value to Transparent. See some codes below:
    <Page.Resources>
    <Style TargetType="GridViewItem" x:Key="GridViewItemExpanded" >
    <Setter Property="FontFamily" Value="{ThemeResource ContentControlThemeFontFamily}" />
    <Setter Property="FontSize" Value="{ThemeResource ControlContentThemeFontSize}" />
    <Setter Property="Background" Value="Transparent"/>
    <Setter Property="TabNavigation" Value="Local"/>
    <Setter Property="IsHoldingEnabled" Value="True"/>
    <Setter Property="Margin" Value="0,0,2,2"/>
    <Setter Property="Template">
    <Setter.Value>
    <ControlTemplate TargetType="GridViewItem">
    <Border x:Name="OuterContainer">
    <VisualStateManager.VisualStateGroups>
    <VisualStateGroup x:Name="CommonStates">
    <VisualState x:Name="Normal"/>
    <!--<VisualState x:Name="PointerOver">
    <Storyboard>
    <DoubleAnimation Storyboard.TargetName="PointerOverBorder"
    Storyboard.TargetProperty="Opacity"
    Duration="0"
    To="1" />
    <ObjectAnimationUsingKeyFrames Storyboard.TargetName="SelectionBackground"
    Storyboard.TargetProperty="Fill">
    <DiscreteObjectKeyFrame KeyTime="0" Value="{ThemeResource ListViewItemSelectedPointerOverBackgroundThemeBrush}" />
    </ObjectAnimationUsingKeyFrames>
    <ObjectAnimationUsingKeyFrames Storyboard.TargetName="SelectedBorder"
    Storyboard.TargetProperty="Stroke">
    <DiscreteObjectKeyFrame KeyTime="0" Value="{ThemeResource ListViewItemSelectedPointerOverBorderThemeBrush}" />
    </ObjectAnimationUsingKeyFrames>
    <ObjectAnimationUsingKeyFrames Storyboard.TargetName="SelectedEarmark"
    Storyboard.TargetProperty="Fill">
    <DiscreteObjectKeyFrame KeyTime="0" Value="{ThemeResource ListViewItemSelectedPointerOverBackgroundThemeBrush}" />
    </ObjectAnimationUsingKeyFrames>
    </Storyboard>
    </VisualState>-->
    <VisualState x:Name="Pressed">
    <Storyboard>
    <PointerDownThemeAnimation TargetName="ContentContainer" />
    </Storyboard>
    </VisualState>
    <VisualState x:Name="PointerOverPressed">
    <Storyboard>
    <PointerDownThemeAnimation TargetName="ContentContainer" />
    <DoubleAnimation Storyboard.TargetName="PointerOverBorder"
    Storyboard.TargetProperty="Opacity"
    Duration="0"
    To="1" />
    <ObjectAnimationUsingKeyFrames Storyboard.TargetName="SelectionBackground"
    Storyboard.TargetProperty="Fill">
    <DiscreteObjectKeyFrame KeyTime="0" Value="{ThemeResource ListViewItemSelectedPointerOverBackgroundThemeBrush}" />
    </ObjectAnimationUsingKeyFrames>
    <ObjectAnimationUsingKeyFrames Storyboard.TargetName="SelectedBorder"
    Storyboard.TargetProperty="Stroke">
    <DiscreteObjectKeyFrame KeyTime="0" Value="{ThemeResource ListViewItemSelectedPointerOverBorderThemeBrush}" />
    </ObjectAnimationUsingKeyFrames>
    <ObjectAnimationUsingKeyFrames Storyboard.TargetName="SelectedEarmark"
    Storyboard.TargetProperty="Fill">
    <DiscreteObjectKeyFrame KeyTime="0" Value="{ThemeResource ListViewItemSelectedPointerOverBackgroundThemeBrush}" />
    </ObjectAnimationUsingKeyFrames>
    </Storyboard>
    </VisualState>
    <VisualState x:Name="Disabled">
    <Storyboard>
    <DoubleAnimation Storyboard.TargetName="contentPresenter"
    Storyboard.TargetProperty="Opacity"
    Duration="0"
    To="{ThemeResource ListViewItemDisabledThemeOpacity}" />
    </Storyboard>
    </VisualState>
    </VisualStateGroup>
    <VisualStateGroup x:Name="FocusStates">
    <VisualState x:Name="Focused">
    <Storyboard>
    <DoubleAnimation Duration="0" To="1" Storyboard.TargetProperty="Opacity" Storyboard.TargetName="FocusVisual" />
    </Storyboard>
    </VisualState>
    <VisualState x:Name="Unfocused"/>
    <VisualState x:Name="PointerFocused"/>
    </VisualStateGroup>
    <VisualStateGroup x:Name="SelectionHintStates">
    <VisualState x:Name="VerticalSelectionHint">
    <Storyboard>
    <SwipeHintThemeAnimation TargetName="SelectionBackground" ToVerticalOffset="15" ToHorizontalOffset="0" />
    <SwipeHintThemeAnimation TargetName="ContentBorder" ToVerticalOffset="15" ToHorizontalOffset="0" />
    <SwipeHintThemeAnimation TargetName="SelectedBorder" ToVerticalOffset="15" ToHorizontalOffset="0" />
    <SwipeHintThemeAnimation TargetName="SelectedCheckMark" ToVerticalOffset="15" ToHorizontalOffset="0" />
    <DoubleAnimationUsingKeyFrames Storyboard.TargetName="HintGlyph"
    Storyboard.TargetProperty="Opacity"
    Duration="0:0:0.500">
    <DiscreteDoubleKeyFrame Value="0.5" KeyTime="0:0:0" />
    <DiscreteDoubleKeyFrame Value="0" KeyTime="0:0:0.500" />
    </DoubleAnimationUsingKeyFrames>
    </Storyboard>
    </VisualState>
    <VisualState x:Name="HorizontalSelectionHint">
    <Storyboard>
    <SwipeHintThemeAnimation TargetName="SelectionBackground" ToHorizontalOffset="-23" ToVerticalOffset="0" />
    <SwipeHintThemeAnimation TargetName="ContentBorder" ToHorizontalOffset="-23" ToVerticalOffset="0" />
    <SwipeHintThemeAnimation TargetName="SelectedBorder" ToHorizontalOffset="-23" ToVerticalOffset="0" />
    <SwipeHintThemeAnimation TargetName="SelectedCheckMark" ToHorizontalOffset="-23" ToVerticalOffset="0" />
    <DoubleAnimationUsingKeyFrames Storyboard.TargetName="HintGlyph"
    Storyboard.TargetProperty="Opacity"
    Duration="0:0:0.500">
    <DiscreteDoubleKeyFrame Value="0.5" KeyTime="0:0:0" />
    <DiscreteDoubleKeyFrame Value="0" KeyTime="0:0:0.500" />
    </DoubleAnimationUsingKeyFrames>
    </Storyboard>
    </VisualState>
    <VisualState x:Name="NoSelectionHint" />
    <VisualStateGroup.Transitions>
    <VisualTransition To="NoSelectionHint" GeneratedDuration="0:0:0.65"/>
    </VisualStateGroup.Transitions>
    </VisualStateGroup>
    <VisualStateGroup x:Name="SelectionStates">
    <VisualState x:Name="Unselecting">
    <Storyboard>
    <DoubleAnimation Storyboard.TargetName="HintGlyphBorder"
    Storyboard.TargetProperty="Opacity"
    Duration="0"
    To="1" />
    </Storyboard>
    </VisualState>
    <VisualState x:Name="Unselected">
    <Storyboard>
    <DoubleAnimation Storyboard.TargetName="HintGlyphBorder"
    Storyboard.TargetProperty="Opacity"
    Duration="0"
    To="1" />
    </Storyboard>
    </VisualState>
    <VisualState x:Name="UnselectedPointerOver">
    <Storyboard>
    <DoubleAnimation Storyboard.TargetName="HintGlyphBorder"
    Storyboard.TargetProperty="Opacity"
    Duration="0"
    To="1" />
    <ObjectAnimationUsingKeyFrames Storyboard.TargetName="contentPresenter"
    Storyboard.TargetProperty="Foreground">
    <DiscreteObjectKeyFrame KeyTime="0" Value="{ThemeResource ListViewItemSelectedForegroundThemeBrush}" />
    </ObjectAnimationUsingKeyFrames>
    </Storyboard>
    </VisualState>
    <VisualState x:Name="UnselectedSwiping">
    <Storyboard>
    <DoubleAnimation Storyboard.TargetName="SelectingGlyph"
    Storyboard.TargetProperty="Opacity"
    Duration="0"
    To="0.5" />
    <DoubleAnimation Storyboard.TargetName="HintGlyphBorder"
    Storyboard.TargetProperty="Opacity"
    Duration="0"
    To="1" />
    </Storyboard>
    </VisualState>
    <VisualState x:Name="Selecting">
    <Storyboard>
    <DoubleAnimation Storyboard.TargetName="SelectionBackground"
    Storyboard.TargetProperty="Opacity"
    Duration="0"
    To="1" />
    <DoubleAnimation Storyboard.TargetName="SelectedBorder"
    Storyboard.TargetProperty="Opacity"
    Duration="0"
    To="1" />
    <DoubleAnimation Storyboard.TargetName="SelectingGlyph"
    Storyboard.TargetProperty="Opacity"
    Duration="0"
    To="1" />
    <DoubleAnimation Storyboard.TargetName="HintGlyphBorder"
    Storyboard.TargetProperty="Opacity"
    Duration="0"
    To="1" />
    <ObjectAnimationUsingKeyFrames Storyboard.TargetName="contentPresenter"
    Storyboard.TargetProperty="Foreground">
    <DiscreteObjectKeyFrame KeyTime="0" Value="{ThemeResource ListViewItemSelectedForegroundThemeBrush}" />
    </ObjectAnimationUsingKeyFrames>
    </Storyboard>
    </VisualState>
    <VisualState x:Name="Selected">
    <Storyboard>
    <DoubleAnimation Storyboard.TargetName="SelectionBackground"
    Storyboard.TargetProperty="Opacity"
    Duration="0"
    To="1" />
    <DoubleAnimation Storyboard.TargetName="SelectedBorder"
    Storyboard.TargetProperty="Opacity"
    Duration="0"
    To="1" />
    <DoubleAnimation Storyboard.TargetName="SelectedCheckMark"
    Storyboard.TargetProperty="Opacity"
    Duration="0"
    To="1" />
    <ObjectAnimationUsingKeyFrames Storyboard.TargetName="contentPresenter"
    Storyboard.TargetProperty="Foreground">
    <DiscreteObjectKeyFrame KeyTime="0" Value="{ThemeResource ListViewItemSelectedForegroundThemeBrush}" />
    </ObjectAnimationUsingKeyFrames>
    </Storyboard>
    </VisualState>
    <VisualState x:Name="SelectedSwiping">
    <Storyboard>
    <DoubleAnimation Storyboard.TargetName="SelectionBackground"
    Storyboard.TargetProperty="Opacity"
    Duration="0"
    To="1" />
    <DoubleAnimation Storyboard.TargetName="SelectedBorder"
    Storyboard.TargetProperty="Opacity"
    Duration="0"
    To="1" />
    <DoubleAnimation Storyboard.TargetName="SelectedCheckMark"
    Storyboard.TargetProperty="Opacity"
    Duration="0"
    To="1" />
    <ObjectAnimationUsingKeyFrames Storyboard.TargetName="contentPresenter"
    Storyboard.TargetProperty="Foreground">
    <DiscreteObjectKeyFrame KeyTime="0" Value="{ThemeResource ListViewItemSelectedForegroundThemeBrush}" />
    </ObjectAnimationUsingKeyFrames>
    </Storyboard>
    </VisualState>
    <VisualState x:Name="SelectedUnfocused">
    <Storyboard>
    <DoubleAnimation Storyboard.TargetName="SelectionBackground"
    Storyboard.TargetProperty="Opacity"
    Duration="0"
    To="1" />
    <DoubleAnimation Storyboard.TargetName="SelectedBorder"
    Storyboard.TargetProperty="Opacity"
    Duration="0"
    To="1" />
    <DoubleAnimation Storyboard.TargetName="SelectedCheckMark"
    Storyboard.TargetProperty="Opacity"
    Duration="0"
    To="1" />
    <ObjectAnimationUsingKeyFrames Storyboard.TargetName="contentPresenter"
    Storyboard.TargetProperty="Foreground">
    <DiscreteObjectKeyFrame KeyTime="0" Value="{ThemeResource ListViewItemSelectedForegroundThemeBrush}" />
    </ObjectAnimationUsingKeyFrames>
    </Storyboard>
    </VisualState>
    </VisualStateGroup>
    <VisualStateGroup x:Name="DragStates">
    <VisualState x:Name="NotDragging" />
    <VisualState x:Name="Dragging">
    <Storyboard>
    <DoubleAnimation Storyboard.TargetName="InnerDragContent"
    Storyboard.TargetProperty="Opacity"
    Duration="0"
    To="{ThemeResource ListViewItemDragThemeOpacity}" />
    <DragItemThemeAnimation TargetName="InnerDragContent" />
    <FadeOutThemeAnimation TargetName="SelectedCheckMarkOuter" />
    <FadeOutThemeAnimation TargetName="SelectedBorder" />
    </Storyboard>
    </VisualState>
    <VisualState x:Name="DraggingTarget">
    <Storyboard>
    <DropTargetItemThemeAnimation TargetName="OuterContainer" />
    </Storyboard>
    </VisualState>
    <VisualState x:Name="MultipleDraggingPrimary">
    <Storyboard>
    <!-- These two Opacity animations are required - the FadeInThemeAnimations
    on the same elements animate an internal Opacity. -->
    <DoubleAnimation Storyboard.TargetName="MultiArrangeOverlayBackground"
    Storyboard.TargetProperty="Opacity"
    Duration="0"
    To="1" />
    <DoubleAnimation Storyboard.TargetName="MultiArrangeOverlayText"
    Storyboard.TargetProperty="Opacity"
    Duration="0"
    To="1" />
    <DoubleAnimation Storyboard.TargetName="ContentBorder"
    Storyboard.TargetProperty="Opacity"
    Duration="0"
    To="{ThemeResource ListViewItemDragThemeOpacity}" />
    <FadeInThemeAnimation TargetName="MultiArrangeOverlayBackground" />
    <FadeInThemeAnimation TargetName="MultiArrangeOverlayText" />
    <DragItemThemeAnimation TargetName="ContentBorder" />
    <FadeOutThemeAnimation TargetName="SelectionBackground" />
    <FadeOutThemeAnimation TargetName="SelectedCheckMarkOuter" />
    <FadeOutThemeAnimation TargetName="SelectedBorder" />
    <FadeOutThemeAnimation TargetName="PointerOverBorder" />
    </Storyboard>
    </VisualState>
    <VisualState x:Name="MultipleDraggingSecondary">
    <Storyboard>
    <FadeOutThemeAnimation TargetName="ContentContainer" />
    </Storyboard>
    </VisualState>
    <VisualStateGroup.Transitions>
    <VisualTransition To="NotDragging" GeneratedDuration="0:0:0.2"/>
    </VisualStateGroup.Transitions>
    </VisualStateGroup>
    <VisualStateGroup x:Name="ReorderHintStates">
    <VisualState x:Name="NoReorderHint"/>
    <VisualState x:Name="BottomReorderHint">
    <Storyboard>
    <DragOverThemeAnimation TargetName="ReorderHintContent" ToOffset="{ThemeResource ListViewItemReorderHintThemeOffset}" Direction="Bottom" />
    </Storyboard>
    </VisualState>
    <VisualState x:Name="TopReorderHint">
    <Storyboard>
    <DragOverThemeAnimation TargetName="ReorderHintContent" ToOffset="{ThemeResource ListViewItemReorderHintThemeOffset}" Direction="Top" />
    </Storyboard>
    </VisualState>
    <VisualState x:Name="RightReorderHint">
    <Storyboard>
    <DragOverThemeAnimation TargetName="ReorderHintContent" ToOffset="{ThemeResource ListViewItemReorderHintThemeOffset}" Direction="Right" />
    </Storyboard>
    </VisualState>
    <VisualState x:Name="LeftReorderHint">
    <Storyboard>
    <DragOverThemeAnimation TargetName="ReorderHintContent" ToOffset="{ThemeResource ListViewItemReorderHintThemeOffset}" Direction="Left" />
    </Storyboard>
    </VisualState>
    <VisualStateGroup.Transitions>
    <VisualTransition To="NoReorderHint" GeneratedDuration="0:0:0.2"/>
    </VisualStateGroup.Transitions>
    </VisualStateGroup>
    <VisualStateGroup x:Name="DataVirtualizationStates">
    <VisualState x:Name="DataAvailable"/>
    <VisualState x:Name="DataPlaceholder">
    <Storyboard>
    <ObjectAnimationUsingKeyFrames Storyboard.TargetName="PlaceholderTextBlock"
    Storyboard.TargetProperty="Visibility"
    Duration="0">
    <DiscreteObjectKeyFrame KeyTime="0">
    <DiscreteObjectKeyFrame.Value>
    <Visibility>Visible</Visibility>
    </DiscreteObjectKeyFrame.Value>
    </DiscreteObjectKeyFrame>
    </ObjectAnimationUsingKeyFrames>
    <ObjectAnimationUsingKeyFrames Storyboard.TargetName="PlaceholderRect"
    Storyboard.TargetProperty="Visibility"
    Duration="0">
    <DiscreteObjectKeyFrame KeyTime="0">
    <DiscreteObjectKeyFrame.Value>
    <Visibility>Visible</Visibility>
    </DiscreteObjectKeyFrame.Value>
    </DiscreteObjectKeyFrame>
    </ObjectAnimationUsingKeyFrames>
    </Storyboard>
    </VisualState>
    </VisualStateGroup>
    </VisualStateManager.VisualStateGroups>
    <Grid x:Name="ReorderHintContent" Background="Transparent">
    <Path x:Name="SelectingGlyph" Opacity="0" Data="F1 M133.1,17.9 L137.2,13.2 L144.6,19.6 L156.4,5.8 L161.2,9.9 L145.6,28.4 z" Fill="{ThemeResource ListViewItemCheckSelectingThemeBrush}" Height="13" Stretch="Fill" Width="15" HorizontalAlignment="Right" Margin="0,9.5,9.5,0" VerticalAlignment="Top" FlowDirection="LeftToRight"/>
    <Border x:Name="HintGlyphBorder"
    Height="40"
    Width="40"
    HorizontalAlignment="Right"
    VerticalAlignment="Top"
    Opacity="0"
    Margin="4">
    <Path x:Name="HintGlyph" Opacity="0" Data="F1 M133.1,17.9 L137.2,13.2 L144.6,19.6 L156.4,5.8 L161.2,9.9 L145.6,28.4 z" Fill="{ThemeResource ListViewItemCheckHintThemeBrush}" Height="13" Stretch="Fill" Width="15" HorizontalAlignment="Right" Margin="0,5.5,5.5,0" VerticalAlignment="Top" FlowDirection="LeftToRight"/>
    </Border>
    <Border x:Name="ContentContainer">
    <!-- This extra wrapper grid is necessary because rendertransforms set by the reorder hint animations
    will be lost when ContentContainer becomes a LTE -->
    <Grid x:Name="InnerDragContent">
    <Rectangle x:Name="PointerOverBorder"
    IsHitTestVisible="False"
    Opacity="0"
    Fill="{ThemeResource ListViewItemPointerOverBackgroundThemeBrush}"
    Margin="1" />
    <Rectangle x:Name="FocusVisual"
    IsHitTestVisible="False"
    Opacity="0"
    StrokeThickness="2"
    Stroke="{ThemeResource ListViewItemFocusBorderThemeBrush}" />
    <Rectangle x:Name="SelectionBackground"
    Margin="4"
    Fill="{ThemeResource ListViewItemSelectedBackgroundThemeBrush}"
    Opacity="0" />
    <Border x:Name="ContentBorder"
    Background="{TemplateBinding Background}"
    BorderBrush="{TemplateBinding BorderBrush}"
    BorderThickness="{TemplateBinding BorderThickness}"
    Margin="4">
    <Grid>
    <ContentPresenter x:Name="contentPresenter"
    ContentTransitions="{TemplateBinding ContentTransitions}"
    HorizontalAlignment="{TemplateBinding HorizontalContentAlignment}"
    VerticalAlignment="{TemplateBinding VerticalContentAlignment}"
    Margin="{TemplateBinding Padding}" />
    <!-- The 'Xg' text simulates the amount of space one line of text will occupy.
    In the DataPlaceholder state, the Content is not loaded yet so we
    approximate the size of the item using placeholder text. -->
    <TextBlock x:Name="PlaceholderTextBlock"
    Visibility="Collapsed"
    Text="Xg"
    Foreground="{x:Null}"
    Margin="{TemplateBinding Padding}"
    IsHitTestVisible="False"
    AutomationProperties.AccessibilityView="Raw"/>
    <Rectangle x:Name="PlaceholderRect"
    Visibility="Collapsed"
    Fill="{ThemeResource ListViewItemPlaceholderBackgroundThemeBrush}"/>
    <Rectangle x:Name="MultiArrangeOverlayBackground"
    IsHitTestVisible="False"
    Opacity="0"
    Fill="{ThemeResource ListViewItemDragBackgroundThemeBrush}" />
    </Grid>
    </Border>
    <Rectangle x:Name="SelectedBorder"
    IsHitTestVisible="False"
    Opacity="0"
    Stroke="{ThemeResource ListViewItemSelectedBackgroundThemeBrush}"
    StrokeThickness="{ThemeResource GridViewItemSelectedBorderThemeThickness}"
    Margin="4"/>
    <Border x:Name="SelectedCheckMarkOuter"
    IsHitTestVisible="False"
    HorizontalAlignment="Right"
    VerticalAlignment="Top"
    Margin="4">
    <Grid x:Name="SelectedCheckMark" Opacity="0" Height="40" Width="40">
    <Path x:Name="SelectedEarmark" Data="M0,0 L40,0 L40,40 z" Fill="{ThemeResource ListViewItemSelectedBackgroundThemeBrush}" Stretch="Fill"/>
    <Path Data="F1 M133.1,17.9 L137.2,13.2 L144.6,19.6 L156.4,5.8 L161.2,9.9 L145.6,28.4 z" Fill="{ThemeResource ListViewItemCheckThemeBrush}" Height="13" Stretch="Fill" Width="15" HorizontalAlignment="Right" Margin="0,5.5,5.5,0" VerticalAlignment="Top" FlowDirection="LeftToRight"/>
    </Grid>
    </Border>
    <TextBlock x:Name="MultiArrangeOverlayText"
    Text="{Binding RelativeSource={RelativeSource TemplatedParent}, Path=TemplateSettings.DragItemsCount}"
    Foreground="{ThemeResource ListViewItemDragForegroundThemeBrush}"
    FontFamily="{ThemeResource ContentControlThemeFontFamily}"
    FontSize="26.667"
    IsHitTestVisible="False"
    Opacity="0"
    TextWrapping="Wrap"
    TextTrimming="WordEllipsis"
    Margin="18,9,0,0"
    AutomationProperties.AccessibilityView="Raw"/>
    </Grid>
    </Border>
    </Grid>
    </Border>
    </ControlTemplate>
    </Setter.Value>
    </Setter>
    </Style>
    </Page.Resources>
    <Grid Background="{ThemeResource ApplicationPageBackgroundThemeBrush}">
    <GridView ItemsSource="{Binding}" Name="grid" ItemContainerStyle="{StaticResource GridViewItemExpanded}" >
    <GridView.ItemsPanel>
    <ItemsPanelTemplate >
    <VirtualizingStackPanel></VirtualizingStackPanel>
    </ItemsPanelTemplate>
    </GridView.ItemsPanel>
    <GridView.ItemTemplate>
    <DataTemplate>
    <Image Source="{Binding Image}" Height="200" Width="200"></Image>
    </DataTemplate>
    </GridView.ItemTemplate>
    </GridView>
    </Grid>
    Best Wishes!
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place. <br/> Click <a
    href="http://support.microsoft.com/common/survey.aspx?showpage=1&scid=sw%3Ben%3B3559&theme=tech"> HERE</a> to participate the survey.

  • Mouse Hover Color in Horizontal Dropdown Navigation

    Hi,
    Mouse Hover color in the Horizontal Dropdown Navigation scheme is not changed even if you apply a different stylesheet. It remains the default blue. Is there a setting some where or it needs to be modified in the navigation scheme.
    thanks
    -Sachin

    Sachin,
    Are you talking about the mouse hover color for the dropdown menu entries? That stylesheet class is defined in a different stylesheet. Look in
    <imageserver dir>\imageserver\plumtree\common\private\js\jsportalmenus\122846\styles\css\PTPMMenu.css.
    The number might be different on your system. If you view the HTML source on a portalpage and search for PTPMMenu.css you will see the number your portal is using. The styleclasses you want to change in PTPMMenu.css are .PTPMMenuBody .hoverand .PTPMMenuBody .hover td. You might also need to change other classes with the highlight color depending on the type of entries you have in your menus.

  • Spry Menu Text only displays in hover color, doesn't sense browser edge

    I have a Spry horizontal menu in a website that is working fairly well in everything except IE6.  Firefox, Safari, and IE7 are all fine.
    In IE6, random menu items only display in the blue hover color, so they are invisible until you hover over them.
    My second problem is that the menu is right-aligned, and the button on the far right has three submenus.  I would like the second two submenus to automatically open to the left of the first submenu when opening to the right would cause them to be cut off by the edge of the browser window.  How do I do this??
    Here is my code (I've customized it with suggestions online, but just can't seem to fix the problem with IE6).
    Thanks for any help, I'm really stuck!!
    @charset "UTF-8";
    /* SpryMenuBarHorizontal.css - version 0.6 - Spry Pre-Release 1.6.1 */
    /* Copyright (c) 2006. Adobe Systems Incorporated. All rights reserved. */
    LAYOUT INFORMATION: describes box model, positioning, z-order
    /* The outermost container of the Menu Bar, an auto width box with no margin or padding */
    ul.MenuBarHorizontal
    margin: 0;
    padding: 0;
    list-style-type: none;
    font-size: 9pt;
    cursor: default;
    font-family: Helvetica, Arial, sans-serif;
    /* Set the active Menu Bar with this class, currently setting z-index to accomodate IE rendering bug: http://therealcrisp.xs4all.nl/meuk/IE-zindexbug.html */
    ul.MenuBarActive
    z-index: 1000;
    /* Menu item containers, position children relative to this container and are a fixed width */
    ul.MenuBarHorizontal li
    margin: 0;
    padding: 0;
    list-style-type: none;
    font-size: 100%;
    position: relative;
    text-align: left;
    cursor: pointer;
    width: auto;
    float: left;
    height: auto;
    /* Submenus should appear below their parent (top: 0) with a higher z-index, but they are initially off the left side of the screen (-1000em) */
    ul.MenuBarHorizontal ul
    margin: 0;
    padding: 0;
    list-style-type: none;
    font-size: 100%;
    z-index: 1020;
    cursor: default;
    width: 8.2em;
    position: absolute;
    left: -1000em;
    /* Submenu that is showing with class designation MenuBarSubmenuVisible, we set left to auto so it comes onto the screen below its parent menu item */
    ul.MenuBarHorizontal ul.MenuBarSubmenuVisible
    left: auto;
    /* Menu item containers are same fixed width as parent */
    ul.MenuBarHorizontal ul li
    width: 12em;
    /* Submenus should appear slightly overlapping to the right (95%) and up (-5%) */
    ul.MenuBarHorizontal ul ul
    position: absolute;
    margin: -5% 0 0 95%;
    /* Submenu that is showing with class designation MenuBarSubmenuVisible, we set left to 0 so it comes onto the screen */
    ul.MenuBarHorizontal ul.MenuBarSubmenuVisible ul.MenuBarSubmenuVisible
    left: auto;
    top: 0;
    DESIGN INFORMATION: describes color scheme, borders, fonts
    /* Submenu containers have borders on all sides */
    /*ul.MenuBarHorizontal ul
    border: 1px solid #CCC;
    /* Menu items are a blue block with padding and no text decoration */
    ul.MenuBarHorizontal a
    display: block;
    cursor: pointer;
    background-color: #0000ff;
    color: #fff180;
    text-decoration: none;
    li.MenuBarHorizontal a
    display: block;
    cursor: pointer;
    background-color: #0000FF;
    color: #FFF180;
    text-decoration: none;
    padding-top: 5px;
    padding-bottom: 5px;
    padding-left: 5px;
    padding-right: 5px;
    /* Menu items that have mouse over or focus have a yellow background and blue text */
    ul.MenuBarHorizontal a:hover, ul.MenuBarHorizontal a:focus
    background-color: #fff180;
    color: #0000ff;
    /* Menu items that are open with submenus are set to MenuBarItemHover with a blue background and white text */
    ul.MenuBarHorizontal a.MenuBarItemHover, ul.MenuBarHorizontal a.MenuBarItemSubmenuHover, ul.MenuBarHorizontal a.MenuBarSubmenuVisible
    background-color: #fff180;
    color: #0000FF;
    SUBMENU INDICATION: styles if there is a submenu under a given menu item
    /* Menu items that have a submenu have the class designation MenuBarItemSubmenu and are set to use a background image positioned on the far left (95%) and centered vertically (50%) */
    ul.MenuBarHorizontal a.MenuBarItemSubmenu
    background-image: url(SpryMenuBarDown.gif);
    background-repeat: no-repeat;
    background-position: 95% 50%;
    /* Menu items that have a submenu have the class designation MenuBarItemSubmenu and are set to use a background image positioned on the far left (95%) and centered vertically (50%) */
    ul.MenuBarHorizontal ul a.MenuBarItemSubmenu
    background-image: url(SpryMenuBarRight.gif);
    background-repeat: no-repeat;
    background-position: 95% 50%;
    /* Menu items that are open with submenus have the class designation MenuBarItemSubmenuHover and are set to use a "hover" background image positioned on the far left (95%) and centered vertically (50%) */
    ul.MenuBarHorizontal a.MenuBarItemSubmenuHover
    background-image: url(SpryMenuBarDownHover.gif);
    background-repeat: no-repeat;
    background-position: 95% 50%;
    /* Menu items that are open with submenus have the class designation MenuBarItemSubmenuHover and are set to use a "hover" background image positioned on the far left (95%) and centered vertically (50%) */
    ul.MenuBarHorizontal ul a.MenuBarItemSubmenuHover
    background-image: url(SpryMenuBarRightHover.gif);
    background-repeat: no-repeat;
    background-position: 95% 50%;
    BROWSER HACKS: the hacks below should not be changed unless you are an expert
    /* HACK FOR IE: to make sure the sub menus show above form controls, we underlay each submenu with an iframe */
    ul.MenuBarHorizontal iframe
    position: absolute;
    z-index: 1010;
    filter:alpha(opacity:0.1);
    /* HACK FOR IE: to stabilize appearance of menu items; the slash in float is to keep IE 5.0 from parsing */
    @media screen, projection
    ul.MenuBarHorizontal li.MenuBarItemIE
    display: inline;
    f\loat: left;
    background: #FFF;
    @media screen {
    * html ul.MenuBarVertical ul {position: relative!important; float: left;
    margin: -10px -1000px -1000px 80px; display: inline;}
    * html ul.MenuBarVertical {position: static!important; }
    *:first-child+html ul.MenuBarVertical ul {position: relative!important;
    float: left; margin: -10px -1000px -1000px 80px;}
    *:first-child+html ul.MenuBarVertical {position: static!important; }

    If you want to see the website and menu in action, go to http://www.gwnetworks.com/playtri/index_new2.html
    Thanks again!

  • Change color for link/website/file link.

    Everytime I create a like to an email or file it seems to be WHITE FONT, but that doesn't work on white background. I have tried so many ways to change the font, but it won't allow it. What do I do to change the color of font to a hyperlink/file etc?
    Thanks

    When the Site is published to your folder/.Mac/iDisk, there is a corresponding CSS style sheet for every page type. For example, the Blog folder has within it, a Blog CSS style sheet. Using a CSS editor (like CSSEdit) you can adjust things like the hyperlink and hover color as well as font etc. The only aspect of the iWeb template I have not been able to adjust is the Navigation bar.

  • Howto change color for all elements

    I want to update the formatting for some existing Keynote presentations. Applying a new Theme does most of the work, but there are some things that are not updated to the new theme. For example: background color of certain text boxes -- and the color of actual bullets for bullet points.
    In the case of these presentations:
    - the background color of the textboxes is blue and I want them all to be transparent
    - the color of the bullets is blue and I want them all to be the default color/picture of the particular theme
    I realize this is because Keynote is "respecting" textbox formatting changes I have made in the original, but it would be nice if I could over-ride this "respect" somehow. It is easy to select all the text of a Keynote presentation and apply various ways to all the text. Is there a trick for selecting all textboxes (and changing the background color of them) -- or of specifying something to the effect of, "apply the following format to all the bullets in a presentation?

    Ok, in that file, you'll find a set of parameters that looks like this.
    sfa:r="1" sfa:g="0" sfa:b="0" sfa:a=".5"
    Those stand for the red, green, and blue of a color and the last one is the opacity. This particular combination would create a red object with 50 percent opacity. Still looking for which one of these controls the background of a text box.
    You know, it looks like if you go through the file searching for sf:fill and deleting that section, then that removes the fill. Once you find the right section, one find and replace would do it for you. It's one of those things that makes me wish I was handy enough with Automator and/or Applescript.
    Message was edited by: Kyn Drake

  • How do you make a SpryMenuBar a different color for each page?

    Hey everyone. I'm new to web design and dreamweaver is definitly kicking my butt. Anyway, I'm trying to create a simple website for a foundation and I want to make each page have a different color Sprymenubar to match the color theme of the different pages. The site will only have about 6 color themes max so this shouldn't be a huge undertaking. The trouble I'm having is I have created the home page (the color green) and right now I'm working on the second page (the color blue). When I added a new sprymenubar and changed the CSS Rule to make the color of the menu blue and the hover color light blue it then changes the color of the menu on the home page from Green to Blue. How annoying! I even tried starting from scratch and inserting another horizontal sprymenubar but I can't seem to make another horizontal sprymenubar with a whole new set of rules independent from the first one. What can I do? Do I have to make an editable region or am I just not clicking a certain button to make the new menubar independent from the first one?
    Examples
    First this
    Then this
    And then this happens 
    Let me know!!

    Ok I found a similar question on this forum that was answered and helped. If anyone comes across this wondering the same thing, copy and paste your SpryMenuBarHorizontal.css file and rename the copy to something like "(Title_Of_Page)SpryMenuBarHorizontal.css" and then replace "SpryMenuBarHorizontal.css" in your code to <link href="../SpryAssets/(Title_Of_Page)SpryMenuBarHorizontal.css" and then you are good to go.

  • Is it possible to use a library color for text selected within a text box?

    What I would like to do is be able to select a string of text within a text box and assign it a library color. Currently all you get is an audible "bong" if you highlight the text and try to select a color from the library. Likewise, if you select the text, then select the Character color palette, and then try to select the library color, it won't do it.
    Attempted steps:
    1. Select the text you would like to change the color for in a text box
    2. Select the color in the Character window
    3. Attempt to select the color from the library
    I presume this simply hasn't been implemented yet but just want to make certain I am not missing something if there is a way to make this work the way that it seems it should.

    You can hold the left mouse button, click somewhere in your photo, drag the eyedropper over to the libraries panel, hover over the different swatches and you should see the colors change in the color picker.
    When you find the color you want, release the mouse button.

  • Css link hover color not applied to last letter in safari

    Im only seeing this in safari. Here is my site:
    http://smartpeopletalkfast.co.uk/oo2/
    If I click on the contact page its highlihgted as it should be. However if im not on the contact page and I hover over the contact link, the last bit of the 't' is not highlighted. How can I fix this?
    Im assuming becuase its italic the last bit is outside of the div, and for some reason the hover color isnt shown. Ive tried applying both a:hover css aswell as li:hover a.
    Thanks

    I'm seeing it in FF 3.6.13 as well on the PC.
    Validate your page either throuth DW or the W3C. For one thing, you've got div tags inside li tags. Don't split up your styling . . . add the italic styling to the main styline for the li tag.
    If fixing the coding doesn't work, try adding some padding to the right of that container -- a couple of pixels ought to do it.

  • Is it possible to disable visited link color for entire site.

    I have a 20 page site and am using text links in a sidebar for site navigation between pages. I desire to for a red hover color to appear when mouse cursor is over link. All works well the first time page is visited, cursor placed over Link1 changes color of Link1 text to red. Now if I click on Link1 and then return to the page on which Link1 was located, the cursor placed over Link1 does not show the hover color because the link now has the visited color. while I know I can edit the CSS file for each page (there are 20 or so) CSS to remove the "a:visited....." code to disable the visited color from overriding the hover color, doing so is rather inconvenient since the site is in very active development.
    Question: is there any way to globally disable the visited color or disable the visited color in iWeb?

    Robbo, at this time it not possible to disable the Edit Layout on the record detail page.

  • How to give Common Background color for all JPanels in My Swing application

    Hi All,
    I am developing a swing application using The Swing Application Framework(SAF)(JSR 296). I this application i have multiple JPanel's embedded in a JTabbedPane. In this way i have three JTabbedPane embedded in a JFrame.
    Now is there any way to set a common background color for the all the JPanel's available in the application??
    I have tried using UIManager.put("Panel.background",new Color.PINK);. But it did not work.
    Also let me know if SAF has some inbuilt method or way to do this.
    Your inputs are valuable.
    Thanks in Advance,
    Nishanth.C

    It is not the fault of NetBeans' GUI builder, JPanels are opaque by default, I mean whether you use Netbeans or not.Thank you!
    I stand corrected (which is short for +"I jumped red-eyed on my feet and rushed to create an SSCCE to demonstrate that JPanels are... mmm... oh well, they are opaque by default... ;-[]"+)
    NetBeans's definitely innocent then, and indeed using it would be an advantage (ctrl-click all JPanels in a form and edit the common opaque property to false) over manually coding
    To handle this it would be better idea to make a subclass of JPanel and override isOpaque() to return false. Then use this 'Trasparent Panel' for all the panels where ever transparency is required.I beg to differ. From a design standpoint, I'd find it terrible (in the pejorative sense of the word) to design a subclass to inconsistently override a getter whereas the standard API already exposes the property (both get and set) for what it's meant: specify whether the panel is opaque.
    Leveraging this subclass would mean changing all lines where a would-be-transparent JPanel is currently instantiated, and instantiate the subclass instead.
    If you're editing all such lines anyway, you might as well change the explicit new JPanel() for a call to a factory method createTransparentJPanel(); this latter could, at the programmer's discretion, implement transparency whichever way makes the programmer's life easier (subclass if he pleases, although that makes me shudder, or simply call thePanel.setOpaque(false) before returning the panel). That way the "transparency" code is centralized in a single easy to maintain location.
    I had to read the code for that latter's UI classes to find out the keys to use (+Panel.background+, Label.foreground, etc.), as I happened to not find this info in an authoritative document - I see that you seem to know thoses keys, may I ask you where you got them from?
    One of best utilities I got from this forum, written by camickr makes getting these keys and their values very easy. You can get it from his blog [(->link)|http://tips4java.wordpress.com/2008/10/09/uimanager-defaults/]
    Definitely. I bit a pair of knucles off when discovered it monthes after cumbersomely traversing the BasicL&F code...
    Still, it is a matter-of-fact approach (and this time I don't mean that to sound pejorative), that works if you can test the result for a given JDK version and L&F, but doesn't guarantee that these keys are there to stand - an observation, but not a specification.
    Thanks TBM for highlighting this blog entry, that's the best keys list device I have found so far, but the questions still holds as to what specifies the keys.
    Edited by: jduprez on Feb 15, 2010 10:07 AM

  • How to let the user define the colors for each plots in the graph (I use LabVIEW 7)?

    How to let the user define the colors for each plots in the graph (I
    use LabVIEW 7)?

    Hi,
    Take a look at this example, it uses property nodes to select tha
    active plot and then changes the color of that plot.
    If you want to make the number of plots dynamic you could use a for
    loop and an array of color boxes.
    I hope this helps.
    Regards,
    Juan Carlos
    N.I.
    Attachments:
    Changing_plot_color.vi ‏38 KB

  • Can you no longer have a background color for the text box in the new version of hp photo creations

    just updated to the new version of HP Photo Creations, used to be able to have a colored background for the text box - is that no longer possible in this new (not better) version????!!!!! Uuuuuuuuuugh

    Hi Lainey.
    Thanks for asking. We're working on bringing back that feature. In the meantime, here's another way to add text backgrounds: Add a placeable graphic and then click the Arrange button to send it to the back, behind the text.
    That approach also gives you more interesting shapes. The new alignment guides make it a snap to align a graphic with a text box. In the example below (it may take a day for the image to show up here), I also used the new Premium Editing Features to change the color of the graphic.
    P.S. — Applying a thick border to an empty text box (also using the Premium Editing Features) is another way to create a background shape. That has the advantage of letting you pick any color for the box. You'll also find several new text styles at the bottom of the new text menu.
    Let us know if we can help further,
    RocketLife 
    RocketLife, developer of HP Photo Creations
    » Visit the HP Photo Creations Facebook page — news, tips, and inspiration
    » See the HP Photo Creations video tours — cool tips in under 2 minutes
    » Contact Customer Support — get answers from the experts

Maybe you are looking for

  • External system Sales Order no and Line Item no in to BAPI_HU_CREATE

    Hi Friends Packing is done and Handling units are created in External System. For this requirement SAP ECC has to update Handling Units creation and  Materials Packing in to HU with reference External System Sales Order no and Line Item no. Could you

  • Sending mail to yahoo using javamail

    hello, i have a javamail code which able to send mail within my domain (mailserver ) . but when i try to send mail to any yahoo id then i get following error :-- javax.mail.SendFailedException: Invalid Addresses; please, anyone help me ; what should

  • Same problem as Mr. Satten

    when I try and log onto the music store it brings up a message saying that I should check my network connections even though I am logged onto aol broadband and it is error 403. We just got broadband back today and I downloaded itunes6 today and I hav

  • Ad block for Safari

    Hi. I would like  to know if there is an Adblock for Safari via Appstore ? (Not 3 party) As I don't want to install Unauthorized Apple  software . Thanks.

  • Problem in recovery

    hi, im using Oracle9i Enterprise Edition Release 9.2.0.4.0 - Production With the Partitioning, OLAP and Oracle Data Mining options JServer Release 9.2.0.4.0 - Production on oralinux 4. this server is standby database and it is in manual recovery mode