修改标题样式

时间:2013-04-04 01:33:42

标签: css sharepoint sharepoint-designer

我的目标很简单我只想将Title =“New”修改为更大的尺寸和颜色,我确实适用于CSS但它不起作用:(

<style type="text/css">
#g_523a7cea_3249_4ac1_b2bc_48efea016ad1
{
color: Blue;
}
</style>    


<WebPartPages:DataFormWebPart runat="server"
Description="" ListDisplayName="" PartOrder="2"
Default="FALSE" HelpLink="" AllowRemove="True" IsVisible="True"
AllowHide="True" UseSQLDataSourcePaging="True" ExportControlledProperties="True"
DataSourceID="" Title="News" ViewFlag="8" NoDefaultStyle="TRUE" AllowConnect="True"
DisplayName="Employee News" PageType="PAGE_DISPLAYFORM" FrameState="Normal"
PageSize="-1" PartImageLarge="" AsyncRefresh="False" ExportMode="All" Dir="Default"
DetailLink="" ShowWithSampleData="False" ListId="645a16cc-7fe6-4247-9800-2170e1479074"
ListName="{645A16CC-7FE6-4247-9800-2170E1479074}" FrameType="Default" PartImageSmall=""
IsIncluded="True" SuppressWebPartChrome="False" AllowEdit="True" ManualRefresh="False"
AutoRefresh="False" AutoRefreshInterval="60" AllowMinimize="True" ViewContentTypeId=""
InitialAsyncDataFetch="False" CssStyleSheet="" MissingAssembly="Cannot import this Web Part."
HelpMode="Modeless" ListUrl="" ID="g_523a7cea_3249_4ac1_b2bc_48efea016ad1"
ConnectionID="00000000-0000-0000-0000-000000000000" AllowZoneChange="True"
IsIncludedFilter="" __MarkupType="vsattributemarkup" __WebPartId="{A7755E5E-BE3F-4415-A163-BAA925625A0E}"
__AllowXSLTEditing="true" WebPart="true" Height="" Width="">

3 个答案:

答案 0 :(得分:0)

用样式替换脚本。脚本是为了javascript。风格是为了css

<style type='text/css'> ... </style>

答案 1 :(得分:0)

渲染页面并查看HTML代码中的ID,然后应用CSS。我几乎可以肯定ID是不同的,这就是为什么它不起作用(几乎发生在任何地方,使用Web控件,特别是在ASP中)。

答案 2 :(得分:0)

该ID适用于DVWP。 没有一种风格可以一举应用于整个DVWP。在DVWP内部,将有许多其他CSS类用于不同的元素,它们将被应用,覆盖任何内容,即使您 可以 使用CSS的Web部件ID格式。

DVWP通常显示在表格中。 TH,TR,TD等有不同的类和风格。如果要更改外观,则需要为表元素处理这些类。