Blanketing a Style

L

Lauren

Because of the way I have my web page set-up when I use an Include Page the
content page uses the Include Pages font size. My programmer at work here
told me to Blanket the Style on the Include Page. When I did it worked but
it also decreased my font size in the Include Page. Do you know how I can
prevent this?

Thanks,

Lauren
 
T

Thomas A. Rowe

How are setting the font styles on the Include Page?
How are you "Blanket the Style" on the Include Page?

--
==============================================
Thomas A. Rowe (Microsoft MVP - FrontPage)
WebMaster Resources(tm)

FrontPage Resources, WebCircle, MS KB Quick Links, etc.
==============================================
If you feel your current issue is a results of installing
a Service Pack or security update, please contact
Microsoft Product Support Services:
http://support.microsoft.com
If the problem can be shown to have been caused by a
security update, then there is usually no charge for the call.
==============================================
 
L

Lauren

It was like this....

<style>

<!--

font { font-size: 8pt }

-->

</style>

Then I changed the <style> tages to <blanketstyle>



Lauren
 
J

Jens Peter Karlsen [FP MVP]

There is no tag called <blanketstyle> you should remove it.
Also you shouldn't use point (pt) as a measure for font size. Point is
used in printed material. Use pixel (px) if you must specify a fixed
size. Best is to use a relative size such as em or %.

Regards Jens Peter Karlsen. Microsoft MVP - Frontpage.
 
L

Lauren

For some reason the <blanketstyle> tag worked though. Then how do I properly
Blanket the Font size in the Include Page to keep it from effecting the Main
Content page?

Thanks,

Lauren
 
S

Steve Easton

Place the included content in a table or cell in a table, or in a div with a class name
And then apply the font style to the class.

<style>
..classname{
font: ??
}
</style>


<div class="classname">
included content here

</div>


--
Steve Easton
Microsoft MVP FrontPage
95isalive
This site is best viewed..................
...............................with a computer
 
L

Lauren

Thank you!


Steve Easton said:
Place the included content in a table or cell in a table, or in a div with a class name
And then apply the font style to the class.

<style>
.classname{
font: ??
}
</style>


<div class="classname">
included content here

</div>


--
Steve Easton
Microsoft MVP FrontPage
95isalive
This site is best viewed..................
..............................with a computer
 
Top