How to Control default Styles(Font,BGColor,Size) for WPC Objects.

Hi All,
This is Ganesh, Current i am working on Content Migration Using WPC.Now My Question, while we are creating the Site Content using WPC(Like Articles, Paragraph's, etc...), while we are typing the content for Article, its showing in one font, after creation of article,while we are previewing of the Article , its showing in Blue Color Letter's and Shade Blue back ground and also Coming font big in size.
If i am creating the paragraph, while we are previewing the its Displaying in Black Color.
From where the details of font, size and back ground colors are coming in WPC objects.and if they have to modified, how can it be done?
Where We can Control the Default Styles for WPC Content Creation Objects.If Possible how to modify?
Please provide some valuble inputs for my Query???
Thanks in Advance
Krishna Ganesh

Ganesh,
You are absolutely right. If you modify the xml, xsl and css files supplied by the standard SAP it will affect all the users. Please note that whenever you need to modify the css, you need to do the same in /etc/wpceditor/css/runtime folder. Modification of the css in /etc/wpceditor/css/designtime folder is not of any use.
If you do not want the changes made to the style to affect all other users, it is always wiser and recommended to create your own custom webform. Some webforms like Article, Link List, banner, teaser etc are provided by SAP. If you want to create your own webform and apply the style to that webform alone then you need to follow the process of creating custom webforms in WPC.
In order to change the style you need to understand a bit of XML and XSL transformation.
You can refer to the following sdn help for the same - http://help.sap.com/saphelp_nw70/helpdata/en/45/599b78b0aa3bdde10000000a1553f7/frameset.htm
Hope it helps. Let me know if you need any further clarification.

Similar Messages

  • How to Control Defualt Styles(Font,Size,BG Color) for WPC Objects

    Hi All,
    This is Ganesh, Current i am working on Content Migration Using WPC.Now My Question, while we are creating the Site Content using WPC(Like Articles, Paragraph's, etc...), while we are typing the content for Article, its showing in one font, after creation of article,while we are previewing of the Article , its showing in Blue Color Letter's and Shade Blue back ground and also Coming font big in size.
    If i am creating the paragraph, while we are previewing the its Displaying in Black Color.
    From where the details of font, size and back ground colors are coming in WPC objects.and if they have to modified, how can it be done?
    Where We can Control the Default Styles for WPC Content Creation Objects.If Possible how to modify?
    Please provide some valuble inputs for my Query???
    Thanks in Advance
    Ganesh

    Ganesh,
    You are absolutely right. If you modify the xml, xsl and css files supplied by the standard SAP it will affect all the users. Please note that whenever you need to modify the css, you need to do the same in /etc/wpceditor/css/runtime folder. Modification of the css in /etc/wpceditor/css/designtime folder is not of any use.
    If you do not want the changes made to the style to affect all other users, it is always wiser and recommended to create your own custom webform. Some webforms like Article, Link List, banner, teaser etc are provided by SAP. If you want to create your own webform and apply the style to that webform alone then you need to follow the process of creating custom webforms in WPC.
    In order to change the style you need to understand a bit of XML and XSL transformation.
    You can refer to the following sdn help for the same - http://help.sap.com/saphelp_nw70/helpdata/en/45/599b78b0aa3bdde10000000a1553f7/frameset.htm
    Hope it helps. Let me know if you need any further clarification.

  • Please help! How can I change the font / text size for the checkout page? I asked Support and they sent me here- thanks in advance for your response.

    Hello everyone! I build an e-commerce shopping cart via BC and integrated it with a muse website as seen at sarahcosmetics .com
    Everything is great, but my clients clients are complaining they cannot see the text well once they're in the checkout page.
    I was able to enlarge the font in my Registration-Buy form in the Online Shop Layouts / Module Templates under the Site Manager. This helped enlarge the font size in the checkout form however my issue arrises on the next page when they have to enter their details like CC information name, address etc. the font is way too small and I'm not sure where to access the tools to enlarge that.
    If you could PLEASE help I would greatly appreciate it. I told my client I would handle it asap and I have no idea how to fix this.
    Thank you in advance for your help.
    Jessica

    This isn't possible yet in the current version of Fennec, but we are working on it. See https://bugzilla.mozilla.org/show_bug.cgi?id=590817 for details.

  • How to Control Barcode style in SAP with New Procedure

    Dear Friend,
    I am format my data to print out as bar codes that use in New Bar Code Printing!
    But the Bar Code only include series of lines of varying thickness and/or distance from one another , without information which stand for character .
    How to do that  display Bar Code include lines and information which stand for character ?
    How to Control Barcode style in SAP with New Procedure ?
    Thanks a lot !

    the barcode is print the type of barcode . check below barcodes
    KUNAUNR
    KUNAUPS
    AUFNR
    these barcodes print like this
    testbarcode

  • 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>

  • How to set default User preferences in Analyzer for all users

    How to set default User preferences in Analyzer for all users<BR><BR>Hi,<BR><BR>I would like to set some settings in Analyzer as default for all users. For example:<BR>1. Display | Char<BR>2. right mouse click on char | Chart Properties<BR>3. Axes tab<BR>4. "Format: Currency" i would like to change to "Format: Number".<BR><BR>How to set default values to all users? Is this possible?<BR><BR>Thanks,<BR>Grofaty

    I'm pretty sure higher access superceedes, so you could set up a group with no actual access, just to get the preferences working, then their individual security will dictate what they can do. I haven't tested this fully, but I beleive this is how it will work.<BR>As far as setting the preferences, go into the admin console and right click on the group, then select Preferences. To apply the group preferences to a user, add the user to the group, then right click on the user, select preferences and from the upper left corner, use the drop down to select the active preference, in this case, it will be the group you created and added them to.<BR><BR>HTH

  • How to control the looping time of the for loop in 10 microseconds in labview?

    I need to create a +/- 9 volt square wave with period of 20us using a D/A card (Not NI card). I can write command to the card using outport provide by Labview. Right now, I can generate square wave with 4ms period which is limited by the resolution of the wait until next ms icon I used inside the for loop. Could anyone tell me how to control the execution time of the for loop to about 10 us? Your help would be much appreciated.

    I'm not sure if this will hep, but this answer seems to answer this question
    http://exchange.ni.com/servlet/ProcessRequest?RHIVEID=101&RPAGEID=135&HOID=50650000000800000029410000&UCATEGORY_0=_30_%24_12_&UCATEGORY_S=0&USEARCHCONTEXT_QUESTION_0=microsecond+resolution+1ms&USEARCHCONTEXT_QUESTION_S=0

  • I'm not able to see all the tabs words on itunes window. I think I uninstall the font on my system. How I can know wich fonts Itunes uses for install it?

    I think I uninstall the font on my system. How I can know wich fonts Itunes uses for install it?
    I'm using Win Vista 64b - but I try already to install all my fot library but nothing happen,, still not able to see some menu's from lists, tabs titles, etc.
    I search through itune's web site and not sign of info about how can I fix this problem...
    help!

    It has something to do with Segoe fonts in your system.
    Refer this link for solution
    iTunes 10.1 Missing Text

  • How to set user preferred timezone in OBIEE for all objects.

    How to set user preferred timezone in OBIEE for all objects based on users TZ(may be from @{session.timeZone}). without changing My Account -> Preferences

    Check
    Time Zone Specification from http://docs.oracle.com/cd/E12844_01/doc/bip.1013/e12187/T421739T481157.htm#4535403
    just in case https://blogs.oracle.com/xmlpublisher/entry/how_to_keep_your_dates_from_go

  • How do you change the font and size in descriptions in iPhoto?

    When I add a description to a photo in a slide show, it appears in only one font size and one continuous line across the frame.  Is there any way to change the font and size?  Can the description be multiple short lines instead of one long one?

    You can't.  It's hard coded into the application.  You can send a feature request to Apple via http://www.apple.com/feedback/iphoto.html.
    OT

  • How do I change the font to bold for a label in a check box item

    I am having no success with this and my internet searches throw me all over the place with no success. Can someone please explain how to change fonts for items in the most simple and basic terms. Thanks

    Use HTML Form Element Attributes and type there something like style="font-weight:bold" or Form Element Option Attributes and class="fielddatabold". See my demo app for that:
    https://apex.oracle.com/pls/apex/f?p=31517:1
    Denes Kubicek
    http://deneskubicek.blogspot.com/
    http://www.apress.com/9781430235125
    http://apex.oracle.com/pls/apex/f?p=31517:1
    http://www.amazon.de/Oracle-APEX-XE-Praxis/dp/3826655494
    -------------------------------------------------------------------

  • How to set default values in initialization event for select option

    Abapers,
    I have 3 GL account like 0024831231,0024831238,0024831245.
    Please help me how to set default values in select-options ( s_hkont ) in INTIALIZATION event
    Thanks

    Select option is table <Structure> with fields, low, high, sign & option
    you need to append the value into the select option, with appropriate value in low or
    example:
    S_HKONT-low  = <value>
    S_HKONT-SIGN = 'I'
    S_hkont-OPTION = 'EQ'
    append s_hkont.
    Default value for select-option also can be added directly in select-option statement.
    Regards,
    Mahesh

  • How to increase Memory and Java Heap Size for Content Server

    Hi,
    My content server is processing requests very slowly. Over performance is not good. I have 2 GB of RAM any idea what files I can modify to increase the Java Heap Size for the Content Server. If I increase the RAM to 4 or 6 GB where do I need to make changes for the Java Heap Size and what are the recommended values. I just have Content Server Running on the linux box. Or how do I assign more memory to the user that owns the content server install.
    Thanks

    You might find these interesting:
    http://blogs.oracle.com/fusionecm/2008/10/how_to_-javatuning.html
    http://download.oracle.com/docs/cd/E10316_01/cs/cs_doc_10/documentation/admin/performance_tuning_10en.pdf
    Do you have access to metalink? This has about everything you could want:
    https://metalink2.oracle.com/metalink/plsql/f?p=130:14:9940589543422282072::::p14_database_id,p14_docid,p14_show_header,p14_show_help,p14_black_frame,p14_font:NOT,788210.1,1,1,1,helvetica
    Or search for "788210.1" in metalink knowledgebase if that link doesn't work and look for the FAQ on configuring Java for Content Servers

  • How to set line style to be underline for links using PDLinkAnnotSetBorder

    Hello,
    I want to set link line style to be underline. am not finding any difference for solid and underline except cosname of S  (BS) is U or S
    Please anyone tells me how to change the link line style to be underline.
    Thanks,
    Sow

    Thanks for reply.
    I am using code as show below to change line style to solid and dashed.
    PDLinkAnnotBorder pdLinkBorder;
    PDLinkAnnotGetBorder( rpdAnnot, &pdLinkBorder);
    //For solid
      pdLinkBorder.dashArrayLen = 0;
    PDLinkAnnotSetBorder( rpdAnnot, &pdLinkBorder);
    //For dashed
    pdLinkBorder.dashArrayLen = 1;
    for( int iIndex = 0; iIndex < PDAnnotMaxDashes; iIndex++)
    {     ASInt32 iThickness = 3;
        pdLinkBorder.dashArray[iIndex] = Int32ToFixed( iThickness );
    PDLinkAnnotSetBorder( rpdAnnot, &pdLinkBorder);
    how should I do for underline. If am using cosobject how to change line style to underline using cosobject
    Please let me know.
    Thanks,
    Sow

  • Upto how much I can set maximum Heap size for jvm?

    I am running application on 8GB RAM Windows 64 bits machine.
    I am running out of OutOfMemory (Heap Space). I want to increase the Heap Size for my jvm.
    But can anybody please tell me what is the limit by which I can set the maximum size for heap?
    Thanks in Advance,
    Jenish

    Max allowed memory per process is 2 raised to the 64th power. What maximum memory you can set depends on the memory available
    for your application. You may be able to set more than 8GB ram then it will use the swap space and it will slow down your application
    performance. So try different memory size and see which one works best for your application.

Maybe you are looking for

  • Itunes freezes when ipod is connected to computer

    Whenever I try to connect my ipod to my laptop my itunes will freeze up. I try opening my ipod using "my computer" but then that will freeze up as well. I'm trying to restore my ipod to see if that will help, but since my itunes freezes, it can't det

  • Problem with WRT54GS w/ SB

    Okay, well, I am trying to hook up the WRT54GS Wireless-G Broadband Router With Speedbooster, but it just won't emit a signal nor send signal through wires. Also note that I am sending a signal to this through another wired router, a BEFVP41 EtherFas

  • How to define a parameter in a method of type com.sap.tc.webdynpro.progmode

    Hi All, I want to define a parameter in a method, type of parameter is com.sap.tc.webdynpro.progmodel.api.IWDNode, But when I browse on type and tehn in local dictionary, I do not find this type of datatype, please suggest how to assign this data typ

  • Distiller 5.0.5 and tagged PDFs

    Is it possible for Distiller 5.0.5 to create tagged PDFs? I can't see where this is specified in the options. Thanks.

  • There was an error opening this document. Could not repair file

    Hi, I generated a report in PDF format on web. I'm able to save this file and reopen in Acrobat Reader(4.0). But only for a specific query criteria, it generates,able to save the file but not able to open. It gives the message "There was an error ope