Style in templates

I have set up a tabbed region on a page with several regions. Several users have added contnt to the page and the text items are in Arial and on a white background. I wish to change the background colour and so assumed that I could change the region background in the template and this would transfer to existing content. Changing the background colour using another defined style makes the existing font chnage to times new roman and although the new (blue) background is visable in the page in edit mode, when the pages are viewed thay are still the old white colour.....Any explanations or help would be appreciated...I understood that the idea of styles was that they could be cascaded without problems through the page group....

I've tried that and it didn't help. The style of the regions in the tabbed areas in the template are set so that all attributes are set to arial (including th epage style just in case that made a difference) and the background is orange, for example. I base a page on that template add an item (text or file) and the item is displayed in times new roman and in edit mode the orange is displayed and the text is in Times new roman - in view mode the background is back to white! I've tried to clear the cache of the page group, page and this has happened over several days even with the server being backed up and restarted. Any more ideas?

Similar Messages

  • Adding styles to template (was: Urgent Help Needed)

    I have created pages from a template and trying to add css style in an editable region but for some reason it is not happening. In the css style panel i can only see the styles that were created on the template but cant see the new ones created for pages. Can someone pleas help me am using cs6.

    Why don't you use an external style sheet instead of embedding styles into pages?  It's so much more efficient.
    See Link to External Style Sheet in DW
    http://alt-web.com/DEMOS/DW-Link-Stylesheet.shtml
    You cannot embed styles into Template driven Child pages unless you have created an editable region for the <head> tag in your main template.dwt file.  For better answers, we would need to see your Template.dwt
    Nancy O.

  • Custom-style outline template with prompts and glossary page

    Hello
    I would like to make a template in Word 2010 with a custom-style outline. Would anyone be able to suggest how to achieve these requirements (pointing me to reading material also helpful):
    1. Every phrase the user types into a field gets automatically added to a final glossary page, listing exact letter-for-letter duplicates only once.
    2. Upon opening an instance of the template the user is prompted with the following entry form questions:
           ○ Prompt: "What error message or problem description will this document cover?" The free-text answer will populate the header of each page in the title style.
           ○ Prompt: "What is your initial condition? If none, press enter." The free-text answer will populate the first line in heading1 style in the form "Additional Condition: [user's answer]".
    If the answer is of string length 0, the user's answer defaults to "none".
           ○ Prompt: "List all possible causes for initial condition, separated by a comma. Phrase possible causes as a question." Each comma-separated free-text answer will populate the next line in heading2
    style with the numbering convention "Possible Cause [#]".
     3. Under each possible cause item the following items appear in heading3 style, each on its own line: "System overview, Tools required, Safety precautions, Troubleshooting steps, Confirm possible cause, Fix confirmed
    cause". Underneath the items just listed appear more fields that the user can use.
    I realize this is a lengthy post, probably too specific, but if I could get pointed in the right direction I am willing to do the research!

    Thank you for the insights, Fei Xue. Let me try to explain to glossary requirement better...
    The glossary will reiterate all phrases entered by the user (this is an outline so each phrase will be a paragraph, but paragraphs the paragraphs a brief). I have the following code that executes as written but the problem comes when you change content
    in the outline the glossary does not get updated.
    'THIS CODE IS IN A MODULE'Sub PageBreakPlus()
    Selection.InsertBreak Type:=wdPageBreak
    End Sub
    Function ProblemFunc() As String
    ProblemFunc = InputBox("Type the error message verbatim. If no error message, type brief problem description to be used as a phrase.", "Error Code Administration")
    End Function
    Function AddConFunc() As String
    AddConFunc = InputBox("Type an additional condition to be used as a phrase. If none, click OK.", "Additional Condition", "None")
    End Function
    Function CausesFunc() As String
    CausesFunc = InputBox("List all possible causes for additional condition in the order a user should investigate them. Phrase possible causes as a question.", "Possible Causes")
    End Function
    'THIS CODE IS IN ThisDocument'Private phrases() As String 'no used at this point'
    Private Sub Document_New()
    Dim causeString As String
    Dim causeArray() As String
    Dim problem As String
    Dim addcon As String
    Dim templateRev As String: templateRev = "16-Apr-2015"
    'get the prompts and split the causeString into each question'
    problem = ProblemFunc
    addcon = AddConFunc
    causeString = CausesFunc
    causeArray = Split(causeString, "?")
    If ActiveWindow.View.SplitSpecial <> wdPaneNone Then
    ActiveWindow.Panes(2).Close
    End If
    If ActiveWindow.ActivePane.View.Type = wdNormalView Or ActiveWindow. _
    ActivePane.View.Type = wdOutlineView Then
    ActiveWindow.ActivePane.View.Type = wdPrintView
    End If
    ActiveWindow.ActivePane.View.SeekView = wdSeekCurrentPageHeader
    With Selection
    .Style = ActiveDocument.Styles("Title")
    .TypeText problem
    .ParagraphFormat.Alignment = wdAlignParagraphCenter
    .TypeParagraph
    .ParagraphFormat.Alignment = wdAlignParagraphCenter
    .TypeText Text:="Template Rev. " & templateRev & vbTab & "Document Rev. "
    .Fields.Add Range:=Selection.Range, Type:=wdFieldEmpty, Text:="CREATEDATE \@ ""d-MMM-yyyy"" ", PreserveFormatting:=True
    End With
    ActiveWindow.ActivePane.View.SeekView = wdSeekMainDocument
    For Each cause In causeArray
    If Len(cause) <> 0 Then
    With Selection
    .TypeText Trim(cause) & "?"
    .Style = ActiveDocument.Styles("Heading 2")
    .TypeParagraph
    .TypeText Text:="System overview"
    .Style = ActiveDocument.Styles("Heading 3")
    .TypeParagraph
    .TypeText Text:="Tools required"
    .Style = ActiveDocument.Styles("Heading 3")
    .TypeParagraph
    .TypeText Text:="Safety precautions"
    .Style = ActiveDocument.Styles("Heading 3")
    .TypeParagraph
    .TypeText Text:="Troubleshooting steps"
    .Style = ActiveDocument.Styles("Heading 3")
    .TypeParagraph
    .TypeText Text:="Confirm possible cause"
    .Style = ActiveDocument.Styles("Heading 3")
    .TypeParagraph
    End With
    End If
    Next cause
    With Selection
    .Style = ActiveDocument.Styles("Normal")
    .InsertBreak Type:=wdPageBreak
    .Style = ActiveDocument.Styles("Strong")
    .TypeText "Glossary of Phrases"
    .TypeParagraph
    .Style = ActiveDocument.Styles("Normal")
    End With
    Dim tbl As Table
    ActiveDocument.Tables.Add Range:=Selection.Range, NumRows:=1, NumColumns:=1, DefaultTableBehavior:=wdWord9TableBehavior, AutoFitBehavior:=wdAutoFitFixed
    With Selection.Tables(1)
    If .Style <> "Table Grid" Then
    .Style = "Table Grid"
    End If
    .ApplyStyleHeadingRows = True
    .ApplyStyleLastRow = False
    .ApplyStyleFirstColumn = True
    .ApplyStyleLastColumn = False
    .ApplyStyleRowBands = True
    .ApplyStyleColumnBands = False
    End With
    With Selection
    .Style = ActiveDocument.Styles("Normal")
    .TypeText Text:=problem
    .MoveRight Unit:=wdCell
    .TypeText Text:=addcon
    .TypeText Text:="System overview"
    .Style = ActiveDocument.Styles("Heading 3")
    .TypeParagraph
    .TypeText Text:="Tools required"
    .Style = ActiveDocument.Styles("Heading 3")
    .TypeParagraph
    .TypeText Text:="Safety precautions"
    .Style = ActiveDocument.Styles("Heading 3")
    .TypeParagraph
    .TypeText Text:="Troubleshooting steps"
    .Style = ActiveDocument.Styles("Heading 3")
    .TypeParagraph
    .TypeText Text:="Confirm possible cause"
    For Each cause In causeArray
    If Len(cause) <> 0 Then
    .MoveRight Unit:=wdCell
    .TypeText Text:=Trim(cause) & "?"
    End If
    Next cause
    End With
    For Each tbl In ActiveDocument.Tables
    tbl.Select
    Selection.Font.Bold = wdToggle
    Selection.Sort ExcludeHeader:=False, FieldNumber:="Column 1", _
    SortFieldType:=wdSortFieldAlphanumeric, SortOrder:=wdSortOrderAscending, _
    FieldNumber2:="", SortFieldType2:=wdSortFieldAlphanumeric, SortOrder2:= _
    wdSortOrderAscending, FieldNumber3:="", SortFieldType3:= _
    wdSortFieldAlphanumeric, SortOrder3:=wdSortOrderAscending, Separator:= _
    wdSortSeparateByCommas, SortColumn:=False, CaseSensitive:=False, _
    LanguageID:=wdEnglishUS, SubFieldNumber:="Paragraphs", SubFieldNumber2:= _
    "Paragraphs", SubFieldNumber3:="Paragraphs"
    Selection.Borders(wdBorderTop).LineStyle = wdLineStyleNone
    Selection.Borders(wdBorderLeft).LineStyle = wdLineStyleNone
    Selection.Borders(wdBorderBottom).LineStyle = wdLineStyleNone
    Selection.Borders(wdBorderRight).LineStyle = wdLineStyleNone
    Selection.Borders(wdBorderHorizontal).LineStyle = wdLineStyleNone
    Selection.Style = ActiveDocument.Styles("Normal")
    Next tbl
    End Sub

  • Cell Style / Web template

    Hi,
    I have a web template in which there are 6 tables( 6 Queries).I want to have the first column width fixed for all Queries and same cell style. Where can I specify the same?
    I am able to achieve same cell style by forcing SAPBEXstditem2 a copy of SAPBEXstditem with the required changes in stylesheet.
    For this I wrote the following code in method STRUCTURE_CELL.
    IF L_DATA_PROVIDER = 'SPRDP10'.
    CASE I_X.
    WHEN 1.
    C_CELL_STYLE = 'SAPBEXstdItem2'.
    ENDCASE.
    ENDIF.
    Can someone help How to achieve same width for the first column in all tables. Is there any possiblities to specify cell width also in stylesheet?
    Thanks in advance
    Regards
    Rajooooooooo

    Hi Soniya,
    You can use a style sheet for displaying the report in the web and a separate one for print settings ans styles. In the WAD, when you open a template, see the Properties window > generic tab > Here you can see an entry in the StyleSheet field. If you click on the button next to this then you can select from the list of available stylesheets.
    To view the HTML for the web template simply click the HTML tab at the bottom of the screen. Or you can also view this in the BW system  SE38 > RS_TEMPLATE_MAINTAIN.
    Hope this helps...

  • Manual of Style for templates?

    Is there a "Manual of Style" or something similar for each of these templates? There's obviously a lot of rich design built into each template (I'm using Basic) but the designers' intent isn't obvious on everything. For example, only a fraction of the paragraph and character Styles are used on the sheets found in the template. I'll break many of the rules to arrive at my own custom template because my needs are different, but I'd prefer to know the designer's intent at the beginning if possible, especially since their work is so beautiful.

    Yes, I'm rather surprised that Apple didn't do a few things:
    1. Including styles for books other than graphic textbooks. It'd be great to have a simple novel template available, one without all the graphics that have to be deleted and sections that just get in the way. I hate the thought of spending several hours to figure out how the templating scheme works just to create something simple like the book I'm working on now.
    I suspect that's an illustration of the typical corporate problem: the execs get hot about something and everyone runs about making them happy. In this case, the execs are hot about K-12 education and perhaps the possibility of selling iPads to schools by the boatload.
    You see that in the claim during the presentation that an iPad is more durable than a textbook. I felt like suggest that someone from Apple and I go to the roof of a four-story building. He drops off an iPad, and I drop off my college physics textbook into the parking lot belot. Which will still be working? Heck, ask yourself which will still be in service five years from now even if nothing is done?
    2. No system for sharing templates other than than downloading one from someone else's website and sticking it in an obscure folder. That's at least partly excusable, since this is the 1.0 version.
    3. No other text import formats other than Pages or Word. Markdown support would be especially nice since text lines starting this way:
    # Chapter 1
    ## Section 1
    ## Section 2
    #Chapter 2
    Would import in just the right structure within the template even if they were in a single file.
    I did confirm something useful. If you have a string of book chapters, each in an individual file and sorted by name in the proper order, dragging into iBooks Author will import all of them in that same order and as separate chapters. Since that book I'm working on has almost 60 short chapters in Scrivener, that's a relief. And Scivener's developer is promising to create some sort of compile for iBooks Author feature that'd export, with one commmand, the individual chapters in individual files in a way that will import correctly into iBooks Author.
    Keep in mind that this app is the 1.0 version probably rushed out to meet a Beat Amazon deadline. Use the provide feedback in to app to make suggestions.

  • ChildWindow control default style and template - VS2013 Silverlight5

     Is there a updated version of ChildWindow control default style for VS2013 SIlverlight5. I am customizing the style to remove borders and the default style
    that I found on MSDN library seems old (2012). When I apply this style, the child window is placed at the top left corner (bug!?) instead of center. 
    Could some one provide the latest version of the style template.
    Thanks in advance.
    Salini

    This fixed the border and position issue I have earlier. Thank you for all your responses.
    <Style x:Key="ChildWindowStyle" TargetType="controls:ChildWindow">
                <Setter Property="IsTabStop" Value="false"/>
                <Setter Property="TabNavigation" Value="Cycle"/>
                <Setter Property="HorizontalAlignment" Value="Center"/>
                <Setter Property="VerticalAlignment" Value="Center"/>
                <Setter Property="HorizontalContentAlignment" Value="Stretch"/>
                <Setter Property="VerticalContentAlignment" Value="Stretch"/>
                <Setter Property="BorderThickness" Value="1"/>
                <Setter Property="BorderBrush">
                    <Setter.Value>
                        <LinearGradientBrush EndPoint="0.5,1" StartPoint="0.5,0">
                            <GradientStop Color="#FFA3AEB9" Offset="0"/>
                            <GradientStop Color="#FF8399A9" Offset="0.375"/>
                            <GradientStop Color="#FF718597" Offset="0.375"/>
                            <GradientStop Color="#FF617584" Offset="1"/>
                        </LinearGradientBrush>
                    </Setter.Value>
                </Setter>
                <Setter Property="OverlayBrush" Value="#7F000000"/>
                <Setter Property="OverlayOpacity" Value="1"/>
                <Setter Property="Template">
                    <Setter.Value>
                        <ControlTemplate TargetType="controls:ChildWindow">
                            <Grid x:Name="Root">
                                <Grid.Resources>
                                    <Style x:Key="ButtonStyle" TargetType="Button">
                                        <Setter Property="Background" Value="#FF1F3B53"/>
                                        <Setter Property="Foreground" Value="#FF000000"/>
                                        <Setter Property="Padding" Value="3"/>
                                        <Setter Property="BorderThickness" Value="1"/>
                                        <Setter Property="BorderBrush">
                                            <Setter.Value>
                                                <LinearGradientBrush EndPoint="0.5,1" StartPoint="0.5,0">
                                                    <GradientStop Color="#FFA3AEB9" Offset="0"/>
                                                    <GradientStop Color="#FF8399A9" Offset="0.375"/>
                                                    <GradientStop Color="#FF718597" Offset="0.375"/>
                                                    <GradientStop Color="#FF617584" Offset="1"/>
                                                </LinearGradientBrush>
                                            </Setter.Value>
                                        </Setter>
                                        <Setter Property="Template">
                                            <Setter.Value>
                                                <ControlTemplate TargetType="Button">
                                                    <Grid x:Name="grid" Background="#02FFFFFF" HorizontalAlignment="Center"
    Height="14" VerticalAlignment="Center" Width="15">
                                                        <VisualStateManager.VisualStateGroups>
                                                            <VisualStateGroup x:Name="CommonStates">
                                                                <VisualState x:Name="Normal"/>
                                                                <VisualState x:Name="MouseOver">
                                                                    <Storyboard>
                                                                        <ObjectAnimationUsingKeyFrames
    Storyboard.TargetProperty="Visibility" Storyboard.TargetName="X_Fuzz2">
                                                                            <DiscreteObjectKeyFrame
    KeyTime="0" Value="Visible"/>
                                                                        </ObjectAnimationUsingKeyFrames>
                                                                        <ObjectAnimationUsingKeyFrames
    Storyboard.TargetProperty="Visibility" Storyboard.TargetName="X_Fuzz1">
                                                                            <DiscreteObjectKeyFrame
    KeyTime="0" Value="Visible"/>
                                                                        </ObjectAnimationUsingKeyFrames>
                                                                        <ObjectAnimationUsingKeyFrames
    Storyboard.TargetProperty="Visibility" Storyboard.TargetName="X_Fuzz0">
                                                                            <DiscreteObjectKeyFrame
    KeyTime="0" Value="Visible"/>
                                                                        </ObjectAnimationUsingKeyFrames>
                                                                        <DoubleAnimation
    Duration="0" To="0.95" Storyboard.TargetProperty="Opacity" Storyboard.TargetName="X"/>
                                                                    </Storyboard>
                                                                </VisualState>
                                                                <VisualState x:Name="Pressed">
                                                                    <Storyboard>
                                                                        <DoubleAnimation
    Duration="0" To="0.85" Storyboard.TargetProperty="Opacity" Storyboard.TargetName="X"/>
                                                                        <ObjectAnimationUsingKeyFrames
    Storyboard.TargetProperty="Visibility" Storyboard.TargetName="X_Fuzz2">
                                                                            <DiscreteObjectKeyFrame
    KeyTime="0" Value="Visible"/>
                                                                        </ObjectAnimationUsingKeyFrames>
                                                                        <ObjectAnimationUsingKeyFrames
    Storyboard.TargetProperty="Visibility" Storyboard.TargetName="X_Fuzz1">
                                                                            <DiscreteObjectKeyFrame
    KeyTime="0" Value="Visible"/>
                                                                        </ObjectAnimationUsingKeyFrames>
                                                                        <ObjectAnimationUsingKeyFrames
    Storyboard.TargetProperty="Visibility" Storyboard.TargetName="X_Fuzz0">
                                                                            <DiscreteObjectKeyFrame
    KeyTime="0" Value="Visible"/>
                                                                        </ObjectAnimationUsingKeyFrames>
                                                                    </Storyboard>
                                                                </VisualState>
                                                                <VisualState x:Name="Disabled">
                                                                    <Storyboard>
                                                                        <DoubleAnimation
    Duration="0" To="0.5" Storyboard.TargetProperty="Opacity" Storyboard.TargetName="X"/>
                                                                    </Storyboard>
                                                                </VisualState>
                                                            </VisualStateGroup>
                                                        </VisualStateManager.VisualStateGroups>
                                                        <Path x:Name="X_Fuzz2" Data="F1 M 6.742676,3.852539 L 9.110840,1.559570
    L 8.910645,0.500000 L 6.838379,0.500000 L 4.902832,2.435547 L 2.967285,0.500000 L 0.895020,0.500000 L 0.694824,1.559570 L 3.062988,3.852539 L 0.527832,6.351563 L 0.689941,7.600586 L 2.967285,7.600586 L 4.897949,5.575195 L 6.854004,7.600586 L 9.115723,7.600586
    L 9.277832,6.351563 L 6.742676,3.852539 Z" Fill="#14C51900" HorizontalAlignment="Center" Height="8" Margin="0,-1,0,0" Opacity="1" RenderTransformOrigin="0.5,0.5" Stretch="Fill" Stroke="#14C51900"
    Visibility="Collapsed" VerticalAlignment="Center" Width="9">
                                                            <Path.RenderTransform>
                                                                <TransformGroup>
                                                                    <ScaleTransform ScaleY="1.3"
    ScaleX="1.3"/>
                                                                </TransformGroup>
                                                            </Path.RenderTransform>
                                                        </Path>
                                                        <Path x:Name="X_Fuzz1" Data="F1 M 6.742676,3.852539 L 9.110840,1.559570
    L 8.910645,0.500000 L 6.838379,0.500000 L 4.902832,2.435547 L 2.967285,0.500000 L 0.895020,0.500000 L 0.694824,1.559570 L 3.062988,3.852539 L 0.527832,6.351563 L 0.689941,7.600586 L 2.967285,7.600586 L 4.897949,5.575195 L 6.854004,7.600586 L 9.115723,7.600586
    L 9.277832,6.351563 L 6.742676,3.852539 Z" Fill="#1EC51900" HorizontalAlignment="Center" Height="8" Margin="0,-1,0,0" Opacity="1" RenderTransformOrigin="0.5,0.5" Stretch="Fill" Stroke="#1EC51900"
    Visibility="Collapsed" VerticalAlignment="Center" Width="9">
                                                            <Path.RenderTransform>
                                                                <TransformGroup>
                                                                    <ScaleTransform ScaleY="1.1"
    ScaleX="1.1"/>
                                                                </TransformGroup>
                                                            </Path.RenderTransform>
                                                        </Path>
                                                        <Path x:Name="X_Fuzz0" Data="F1 M 6.742676,3.852539 L 9.110840,1.559570
    L 8.910645,0.500000 L 6.838379,0.500000 L 4.902832,2.435547 L 2.967285,0.500000 L 0.895020,0.500000 L 0.694824,1.559570 L 3.062988,3.852539 L 0.527832,6.351563 L 0.689941,7.600586 L 2.967285,7.600586 L 4.897949,5.575195 L 6.854004,7.600586 L 9.115723,7.600586
    L 9.277832,6.351563 L 6.742676,3.852539 Z" Fill="#FFC51900" HorizontalAlignment="Center" Height="8" Margin="0,-1,0,0" Opacity="1" Stretch="Fill" Stroke="#FFC51900" Visibility="Collapsed"
    VerticalAlignment="Center" Width="9"/>
                                                        <Path x:Name="X" Data="F1 M 6.742676,3.852539 L 9.110840,1.559570
    L 8.910645,0.500000 L 6.838379,0.500000 L 4.902832,2.435547 L 2.967285,0.500000 L 0.895020,0.500000 L 0.694824,1.559570 L 3.062988,3.852539 L 0.527832,6.351563 L 0.689941,7.600586 L 2.967285,7.600586 L 4.897949,5.575195 L 6.854004,7.600586 L 9.115723,7.600586
    L 9.277832,6.351563 L 6.742676,3.852539 Z" Fill="#FFFFFFFF" HorizontalAlignment="Center" Height="8" Margin="0,-1,0,0" Opacity="0.7" Stretch="Fill" VerticalAlignment="Center" Width="9">
                                                            <Path.Stroke>
                                                                <LinearGradientBrush EndPoint="0.5,1"
    StartPoint="0.5,0">
                                                                    <GradientStop Color="#FF313131"
    Offset="1"/>
                                                                    <GradientStop Color="#FF8E9092"
    Offset="0"/>
                                                                </LinearGradientBrush>
                                                            </Path.Stroke>
                                                        </Path>
                                                    </Grid>
                                                </ControlTemplate>
                                            </Setter.Value>
                                        </Setter>
                                    </Style>
                                </Grid.Resources>
                                <VisualStateManager.VisualStateGroups>
                                    <VisualStateGroup x:Name="WindowStates">
                                        <VisualState x:Name="Open">
                                            <Storyboard>
                                                <DoubleAnimationUsingKeyFrames BeginTime="0" Storyboard.TargetProperty="Opacity"
    Storyboard.TargetName="Overlay">
                                                    <EasingDoubleKeyFrame KeyTime="0" Value="0"/>
                                                    <EasingDoubleKeyFrame KeyTime="00:00:00.3" Value="1"/>
                                                </DoubleAnimationUsingKeyFrames>
                                                <DoubleAnimationUsingKeyFrames BeginTime="0" Storyboard.TargetProperty="(RenderTransform).(Children)[0].ScaleX"
    Storyboard.TargetName="ContentRoot">
                                                    <SplineDoubleKeyFrame KeyTime="0" Value="0"/>
                                                    <SplineDoubleKeyFrame KeyTime="00:00:00.25" Value="0"/>
                                                    <SplineDoubleKeyFrame KeyTime="00:00:00.4" Value="1"/>
                                                    <SplineDoubleKeyFrame KeySpline="0,0,0.5,1" KeyTime="00:00:00.45"
    Value="1.05"/>
                                                    <SplineDoubleKeyFrame KeyTime="00:00:00.55" Value="1"/>
                                                </DoubleAnimationUsingKeyFrames>
                                                <DoubleAnimationUsingKeyFrames BeginTime="0" Storyboard.TargetProperty="(RenderTransform).(Children)[0].ScaleY"
    Storyboard.TargetName="ContentRoot">
                                                    <SplineDoubleKeyFrame KeyTime="0" Value="0"/>
                                                    <SplineDoubleKeyFrame KeyTime="00:00:00.25" Value="0"/>
                                                    <SplineDoubleKeyFrame KeyTime="00:00:00.4" Value="1"/>
                                                    <SplineDoubleKeyFrame KeySpline="0,0,0.5,1" KeyTime="00:00:00.45"
    Value="1.05"/>
                                                    <SplineDoubleKeyFrame KeyTime="00:00:00.55" Value="1"/>
                                                </DoubleAnimationUsingKeyFrames>
                                            </Storyboard>
                                        </VisualState>
                                        <VisualState x:Name="Closed">
                                            <Storyboard>
                                                <DoubleAnimationUsingKeyFrames BeginTime="0" Storyboard.TargetProperty="Opacity"
    Storyboard.TargetName="Overlay">
                                                    <EasingDoubleKeyFrame KeyTime="0" Value="1"/>
                                                    <EasingDoubleKeyFrame KeyTime="00:00:00.3" Value="0"/>
                                                </DoubleAnimationUsingKeyFrames>
                                                <DoubleAnimationUsingKeyFrames BeginTime="0" Storyboard.TargetProperty="(RenderTransform).(Children)[0].ScaleX"
    Storyboard.TargetName="ContentRoot">
                                                    <SplineDoubleKeyFrame KeyTime="00:00:00.2" Value="1"/>
                                                    <SplineDoubleKeyFrame KeyTime="00:00:00.25" Value="1.05"/>
                                                    <SplineDoubleKeyFrame KeyTime="00:00:00.45" Value="0"/>
                                                </DoubleAnimationUsingKeyFrames>
                                                <DoubleAnimationUsingKeyFrames BeginTime="0" Storyboard.TargetProperty="(RenderTransform).(Children)[0].ScaleY"
    Storyboard.TargetName="ContentRoot">
                                                    <SplineDoubleKeyFrame KeyTime="00:00:00.2" Value="1"/>
                                                    <SplineDoubleKeyFrame KeyTime="00:00:00.25" Value="1.05"/>
                                                    <SplineDoubleKeyFrame KeyTime="00:00:00.45" Value="0"/>
                                                </DoubleAnimationUsingKeyFrames>
                                            </Storyboard>
                                        </VisualState>
                                    </VisualStateGroup>
                                </VisualStateManager.VisualStateGroups>
                                <Grid x:Name="Overlay" Background="{TemplateBinding OverlayBrush}" HorizontalAlignment="Stretch" Margin="0" Opacity="{TemplateBinding
    OverlayOpacity}" VerticalAlignment="Top"/>
                                <Grid x:Name="ContentRoot" HorizontalAlignment="{TemplateBinding HorizontalAlignment}" Height="{TemplateBinding Height}" RenderTransformOrigin="0.5,0.5"
    VerticalAlignment="{TemplateBinding VerticalAlignment}" Width="{TemplateBinding Width}">
                                    <Grid.RenderTransform>
                                        <TransformGroup>
                                            <ScaleTransform/>
                                            <SkewTransform/>
                                            <RotateTransform/>
                                            <TranslateTransform/>
                                        </TransformGroup>
                                    </Grid.RenderTransform>
                                    <Border BorderBrush="{TemplateBinding BorderBrush}" BorderThickness="{TemplateBinding BorderThickness}" Background="#FFFFFFFF"
    CornerRadius="2">
                                        <Border CornerRadius="1.5" Margin="1">
                                            <Border.Background>
                                                <LinearGradientBrush EndPoint="0.5,1" StartPoint="0.5,0">
                                                    <GradientStop Color="#FFE5E8EB" Offset="1"/>
                                                    <GradientStop Color="#FFF6F8F9" Offset="0"/>
                                                </LinearGradientBrush>
                                            </Border.Background>
                                            <Grid>
                                                <Grid.RowDefinitions>
                                                    <RowDefinition Height="Auto"/>
                                                    <RowDefinition/>
                                                </Grid.RowDefinitions>
                                                <Border x:Name="Chrome" BorderBrush="#FFFFFFFF" BorderThickness="0,0,0,1"
    Width="Auto">
                                                    <Border.Background>
                                                        <LinearGradientBrush EndPoint="0.5,0.528" StartPoint="0.5,0">
                                                            <GradientStop Color="#FFE5E8EB" Offset="1"/>
                                                            <GradientStop Color="#FFFEFEFE" Offset="0"/>
                                                        </LinearGradientBrush>
                                                    </Border.Background>
                                                    <Grid Height="Auto" Width="Auto">
                                                        <Grid.ColumnDefinitions>
                                                            <ColumnDefinition/>
                                                            <ColumnDefinition Width="30"/>
                                                        </Grid.ColumnDefinitions>
                                                        <ContentControl Content="{TemplateBinding Title}" FontWeight="Bold"
    HorizontalAlignment="Stretch" IsTabStop="False" Margin="6,0,6,0" VerticalAlignment="Center"/>
                                                        <Button x:Name="CloseButton" Grid.Column="1" HorizontalAlignment="Center"
    Height="14" IsTabStop="False" Style="{StaticResource ButtonStyle}" VerticalAlignment="Center" Width="15"/>
                                                    </Grid>
                                                </Border>
                                                <Border  Grid.Row="1">
                                                    <ContentPresenter x:Name="ContentPresenter" ContentTemplate="{TemplateBinding
    ContentTemplate}" Content="{TemplateBinding Content}" HorizontalAlignment="{TemplateBinding HorizontalContentAlignment}" VerticalAlignment="{TemplateBinding VerticalContentAlignment}"/>
                                                </Border>
                                            </Grid>
                                        </Border>
                                    </Border>
                                </Grid>
                            </Grid>
                        </ControlTemplate>
                    </Setter.Value>
                </Setter>
            </Style>

  • Style Sheets & templates enquiry

    I am only just getting into using Style Sheets but am not sure if I can assign a particular location & width to a paragraph, which, if changed, will change all documents using it?
    Is there a way to create a dynamic template in InDesign which is referenced/ linked to all the documents based on it?
    Thanks

    There is no dynamic styles (like CSS) in InDesign, but you can use Book feature for synchronizing styles between documents.
    You can´t define size or location parameters of a column with paragraph style, with object styles you can define fixed width of column if it helps.....

  • Modify publish styles and template.xml for mobile devices

    Looking for lessons learned / recommendations regarding custom styles and edits to template.xml for content being accessed to mobile devices.
    Such as changing "click" to "tap".
    Additionally, any references for use of the "templateeditor.exe" appreciated!

    Create a different framework for your mobile devices.
    You can set different framework pages according to
    User, Role, Group, Bandwidth, URL Alias, Browser Type and Browser Version
    in Rule Collections.
    You can define your own rules in
    System Administration -> Portal Display -> Desktops & Display Rules
    If you are using different users on mobile devices best option is using different Desktops according to Groups otherwise you can use Browser Type or Browser Version...
    Regards
    Abdul.

  • The pre-loaded "portrait" style text template in Pages went blank.  How do I get it back?

    The "landscape" template is still good, so I have to open a new landscape document and change it to portrait manually, which is annoying.

    Sounds as there is something corrupt in your Pages.
    First try Pages in a new user account. You create it in System Preferences > Accounts. Log in to it and try Pages. If you have the same problem there you need to uninstall Pages/iWork and the install it again
    If it does work it is something in your user account that is wrongly working. Many times it is the plist file.
    Tell us which and we will give more information.

  • Portlet doesn't use template style!

    hi,
    I create a standard page from template and then apply "show as portlet" that page. But when I add that portlet into some region, portlet use standard style and not style from template!
    I dont know how to handle that!?
    Kristjan

    Kristjan -
    Portlets always use the style of the page they are displayed on. Is this a hand crafted portlet? Hand crafted portlets have to be written in a certain way to make use of the page style.
    Regards,
    Candace

  • Publishing Word templates and the Normal.dotm

    01smicha wrote:
    Does the gpo use the 'update' method? That should stop any changes made by the user from sticking around for too long.
    Hi, thanks for your input - im not familiar with the gpo setting for that, only when running from a command prompt. Where would I find this ?
    Looking at the gpo (I didn't do this by the way) it runs a bat file that does and xcopy of the folders that contain the normal.dotm

    Hello fellow Spice folks!So in a firm of approx. 200, we use a normal.dotm file, pushed out by GPO, for company styles, AutoText templates etc. When a change to the template is needed, we (or I) update the master copy, and let the GPO copy it back to client machines.Problem with this is quite often the client version of the normal.dotm gets corrupt, grows in size from people saving data to it some how (from the 730kb template to 2 or 3mb) causing issues when opening word and pissing of the users, and in turn me ! This method seems pretty barbaric to me, given that a firm I worked with 3 years ago used the same technique to publish company styles and saw same problems.What technology / method do you employ to distribute a shared company style to your client machines ?If I like it , I want it too !
    This topic first appeared in the Spiceworks Community

  • Style Mapping for TOC & Drop-down

    I'm using RoboHelp 8 and MS Word 2007. I've modified the Style Mapping.dot Word template in the project folder (as opposed to the generic one in the RoboHelp installation folder). I've done the mapping in the Printed Document Appearance dialog box. The problem is that RoboHelp seems to totally ignore or override the styles in the template. I hope that someone can tell me what I'm doing wrong. Let me list some of the problems:
    In the table of contents, the top-level entries are numbered. Within RoboHelp, the Heading 1 entries are not numbered, and the comparable style, TOC1, in the Word Template is not numbered. Yet in the output, the entries are numbered. I don't want them numbered.
    The Word output for "dropspot" text is indented by 1/2", and the output for "droptext" is indented by 1". Both are encased in <p> tags in the RoboHelp source, and the style for div.droptext in the default.css does not contain a left-margin rule. In the Word template, the mapped paragraph style for the droptext does not contain an indent. Of course the style information for dropspot on both the RoboHelp and Word sides is a character format and can't contain any left-margin/indent information. Just for grins, I tried changing the color for dropspot and droptext in the style sheet; that change was produced in the output, but nothing that I have been able to do eliminates the indentation.
    The Word output for the droptext is bolded. Again, it is not bolded in the RoboHelp source, defalut.css, nor in the Word template style mapped to it.
    In the case of the TOC problem, RoboHelp seems to add the numbering to the TOC1 style even though it is not in Style Mapping.dot. Fixing is fairly simple by just altering the style in the output.
    In the case of the dropspot/droptext entries, the problem is monumental. RoboHelp does not appear to add the indentation information to the Word style sheet. Instead, it appears ot modify every single instance inline. Beccause the Help system in question consists of a very large volume of drop-down entries and because it must exist in both online and printed versions, it virtually requires the maintenance of two entirely separate "documents." Since the source can change frequently and substantially, that becomes extraordinarily expensive in terms of resources. We really need to be able to generate useful printed documentation from the online source. Any suggestions.

    I just created a new project and set it up to map to the Style Mapping template. That is obviously a new copy taken from the installation folder.
    I opened the template in Word and used the Change Style pod (CTRL + SHIFT + ALT + S). There I removed numbering from the TOC style. When I generated a document, there was no numbering.
    Dropspots can be part of a paragraph so there should be no indenting. In this sentence "part of a paragraph" could be a dropspot so indenting would be a nonsense.
    Using the supplied template neither were indented.
    That all suggests to me that a fresh look at your in project template needs another review.
    See www.grainge.org for RoboHelp and Authoring tips
    @petergrainge

  • How to auto-style the pasted text at Keynote?

    Hi,
    Currently I'm preparing a presentation via Keynote but there is a problem. I gathered information from my friends as .txt and .docx files. I've chosen the "Leather Book" template. When I paste the text from the .docx file, color and font of the text doesn't change to match the "Leather Book" template. However,.txt files seem to be okay. They just take the style of template. Is there an easy way to automatically convert the style of text to match the template's default style?
    Thanks in advance.
         1. This is what happens when I paste text from the .docx file.
        2. When I paste text from a .txt file,text automatically takes the style of the template.

    Hi,
    Thanks for answering. I've just figured it out And for those who struggle with the same problem,there is another way I found out: Open the document with Pages, File> Export> Plain Text. When you save the file as plain text,you can just copy and paste without using "paste and match style".
    Have a nice day.

  • Background does not appear after applying template

    CS4
    template defined and saved in template folder.
    when applying template to new html page, all transfers but background image does not appear, url is in code but does not find file. any ideas???
    body {
    background-image: url(file:///F|/projects/BBMD Projects/bbmd site v2/images/bridgelv2.jpg);
    background-repeat: no-repeat;
    background-color: #D2D2D2;
    background-attachment: fixed;
    background-position: 75px top;
    height: 400px;
    width: 600px;
    position: inherit;
    overflow: scroll;
    top: auto;
    left: auto;
    right: inherit;
    font-family: "Lucida Console", Monaco, monospace;
    font-size: small;
    font-style: normal;
    color: #000;
    border-top-style: none;
    text-align: left;
    vertical-align: top;
    bottom: auto;
    border-right-style: none;
    border-bottom-style: none;
    border-left-style: none;

    template defined and saved in template folder.
    when applying template to new html page, all transfers but background image does not appear, url is in code but does not find file. any ideas???
    If this is a new site and a newly created template, you DON'T need to 'apply' the template.
    The best way to create new child pages is to :
    FILE>New>Page from Template
    There will be a list of any templates you've created, select the correct one and press create.  Child page created :-)
    Save as newpagename.html  (not inside the Template folder though !)
    PS;  as others have pointed out, the link to the background image is incorrect it's pointing to your harddrive.  Is the file within the defined site working folder?
    Nadia
    Adobe® Community Expert : Dreamweaver
    Unique CSS Templates | Tutorials | SEO Articles
    http://www.DreamweaverResources.com
    Web Design & Development
    http://www.perrelink.com.au
    http://twitter.com/nadiap

  • How to Map the styles in indesign

    I have updated certain styles in template now I need to updated those styles in source indd file.
    Do we have any way to map the styles or do we can replace the styles from one indd doc to another is there possible.
    Otherwise do we have any other simplest way in indesign.
    I have to replace more than 30 to 40 documents.
    Then it take so long time.
    Is there any script to make it soon.

    REMO1980 wrote:
    The actual probs is I need to replace only the style naming not the style.
    Example:
    In indd file the style name is "Title" I need to replace this style name to Chapter Title.
    Is this Possible in
    scripting?
    Yes its possible ....
    Check below code
    //rename paragraph style
    var myDoc = app.activeDocument;
    if (myDoc.paragraphStyles.item("Title") != null)
    myDoc.paragraphStyles.item("Title").name = "Chapter Title";
    But if you importing template style and your template style naming is different then your document stye. I think you can also use delete old style and replace with your new style.
    //delete and replace paragraph style
    if (myDoc.paragraphStyles.item("Title") != null && myDoc.paragraphStyles.item("Chapter Title") != null)
    myDoc.paragraphStyles.item("Title").remove("Chapter Title");
    Shonky

Maybe you are looking for