Blanketing a Style

  • Thread starter Thread starter Lauren
  • Start date Start date
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
 
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.
==============================================
 
It was like this....

<style>

<!--

font { font-size: 8pt }

-->

</style>

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



Lauren
 
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.
 
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
 
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
 
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
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top