PC Review


Reply
 
 
Jay Shelton
Guest
Posts: n/a
 
      3rd May 2005
Is there an easy way to add cascading style sheets after a page is created?
We want to do global changes without having to apply css to each page
element individually. Using FP2002. Thanks for any input.


 
Reply With Quote
 
 
 
 
Jim Cheshire \(JIMCO\)
Guest
Posts: n/a
 
      3rd May 2005
Jay Shelton wrote:
> Is there an easy way to add cascading style sheets after a page is
> created? We want to do global changes without having to apply css to
> each page element individually. Using FP2002. Thanks for any input.


Sure. Create a CSS file and then create a style sheet link to the page.

For creating a CSS file, I highly recommend that you check out TopStyle Pro.

http://www.bradsoft.com/topstyle/

--
Jim Cheshire
JIMCO
http://www.jimcoaddins.com

New Spawn Version!
Version 1.9.6 adds new features!
Get it today FREE at:
http://www.jimcoaddins.com



 
Reply With Quote
 
=?Windows-1252?Q?Rob_Giordano_\=28Crash_Gordon=AE\
Guest
Posts: n/a
 
      3rd May 2005
Jim,

I've been thinking of doing the same thing..
will the linked stylesheet then override the inline stuff...or do you still have to go in and clean up the old tags that aren't needed too <font> etc.

r
"Jim Cheshire (JIMCO)" <(E-Mail Removed)> wrote in message news:%(E-Mail Removed)...
> Jay Shelton wrote:
> > Is there an easy way to add cascading style sheets after a page is
> > created? We want to do global changes without having to apply css to
> > each page element individually. Using FP2002. Thanks for any input.

>
> Sure. Create a CSS file and then create a style sheet link to the page.
>
> For creating a CSS file, I highly recommend that you check out TopStyle Pro.
>
> http://www.bradsoft.com/topstyle/
>
> --
> Jim Cheshire
> JIMCO
> http://www.jimcoaddins.com
>
> New Spawn Version!
> Version 1.9.6 adds new features!
> Get it today FREE at:
> http://www.jimcoaddins.com
>
>
>

 
Reply With Quote
 
Jim Cheshire \(JIMCO\)
Guest
Posts: n/a
 
      3rd May 2005
Rob Giordano (Crash Gordon®) wrote:
> Jim,
>
> I've been thinking of doing the same thing..
> will the linked stylesheet then override the inline stuff...or do you
> still have to go in and clean up the old tags that aren't needed too
> <font> etc.
>


Inline styles will override. You will need to remove any inline styles
first.

--
Jim Cheshire
JIMCO
http://www.jimcoaddins.com

New Spawn Version!
Version 1.9.6 adds new features!
Get it today FREE at:
http://www.jimcoaddins.com



 
Reply With Quote
 
Murray
Guest
Posts: n/a
 
      3rd May 2005
CSS obeys the rule of greater specificity, i.e., the closer the style is to
the element being styled, the higher its priority. This means that inline
styles, or HTML styles AWAYS trump CSS styles.

The answer is yes, you will need to remove all HTML styling in order for
your CSS to take hold.

--
Murray
============

"Rob Giordano (Crash Gordon®)" <(E-Mail Removed)> wrote
in message news:eGwyBA%(E-Mail Removed)...
Jim,

I've been thinking of doing the same thing..
will the linked stylesheet then override the inline stuff...or do you still
have to go in and clean up the old tags that aren't needed too <font> etc.

r
"Jim Cheshire (JIMCO)" <(E-Mail Removed)> wrote in message
news:%(E-Mail Removed)...
> Jay Shelton wrote:
> > Is there an easy way to add cascading style sheets after a page is
> > created? We want to do global changes without having to apply css to
> > each page element individually. Using FP2002. Thanks for any input.

>
> Sure. Create a CSS file and then create a style sheet link to the page.
>
> For creating a CSS file, I highly recommend that you check out TopStyle
> Pro.
>
> http://www.bradsoft.com/topstyle/
>
> --
> Jim Cheshire
> JIMCO
> http://www.jimcoaddins.com
>
> New Spawn Version!
> Version 1.9.6 adds new features!
> Get it today FREE at:
> http://www.jimcoaddins.com
>
>
>



 
Reply With Quote
 
=?Windows-1252?Q?Rob_Giordano_\=28Crash_Gordon=AE\
Guest
Posts: n/a
 
      3rd May 2005
thanks guys...kinda figgerd that...welp that'll be another project to put off for a while.


"Murray" <(E-Mail Removed)> wrote in message news:uh8GVF%(E-Mail Removed)...
> CSS obeys the rule of greater specificity, i.e., the closer the style is to
> the element being styled, the higher its priority. This means that inline
> styles, or HTML styles AWAYS trump CSS styles.
>
> The answer is yes, you will need to remove all HTML styling in order for
> your CSS to take hold.
>
> --
> Murray
> ============
>
> "Rob Giordano (Crash Gordon®)" <(E-Mail Removed)> wrote
> in message news:eGwyBA%(E-Mail Removed)...
> Jim,
>
> I've been thinking of doing the same thing..
> will the linked stylesheet then override the inline stuff...or do you still
> have to go in and clean up the old tags that aren't needed too <font> etc.
>
> r
> "Jim Cheshire (JIMCO)" <(E-Mail Removed)> wrote in message
> news:%(E-Mail Removed)...
> > Jay Shelton wrote:
> > > Is there an easy way to add cascading style sheets after a page is
> > > created? We want to do global changes without having to apply css to
> > > each page element individually. Using FP2002. Thanks for any input.

> >
> > Sure. Create a CSS file and then create a style sheet link to the page.
> >
> > For creating a CSS file, I highly recommend that you check out TopStyle
> > Pro.
> >
> > http://www.bradsoft.com/topstyle/
> >
> > --
> > Jim Cheshire
> > JIMCO
> > http://www.jimcoaddins.com
> >
> > New Spawn Version!
> > Version 1.9.6 adds new features!
> > Get it today FREE at:
> > http://www.jimcoaddins.com
> >
> >
> >

>
>

 
Reply With Quote
 
Chris Leeds, MVP-FrontPage
Guest
Posts: n/a
 
      3rd May 2005
If I remember right; topstyle has a function to remove styles and font tags
from the pages in a web.

--
Chris Leeds,
Microsoft MVP-FrontPage

ContentSeed: great tool for web masters,
a fantastic convenience for site owners.
http://contentseed.com/
--
"Rob Giordano (Crash Gordon®)" <(E-Mail Removed)> wrote
in message news:#QLyjO#(E-Mail Removed)...
thanks guys...kinda figgerd that...welp that'll be another project to put
off for a while.


"Murray" <(E-Mail Removed)> wrote in message
news:uh8GVF%(E-Mail Removed)...
> CSS obeys the rule of greater specificity, i.e., the closer the style is

to
> the element being styled, the higher its priority. This means that inline
> styles, or HTML styles AWAYS trump CSS styles.
>
> The answer is yes, you will need to remove all HTML styling in order for
> your CSS to take hold.
>
> --
> Murray
> ============
>
> "Rob Giordano (Crash Gordon®)" <(E-Mail Removed)> wrote
> in message news:eGwyBA%(E-Mail Removed)...
> Jim,
>
> I've been thinking of doing the same thing..
> will the linked stylesheet then override the inline stuff...or do you

still
> have to go in and clean up the old tags that aren't needed too <font> etc.
>
> r
> "Jim Cheshire (JIMCO)" <(E-Mail Removed)> wrote in message
> news:%(E-Mail Removed)...
> > Jay Shelton wrote:
> > > Is there an easy way to add cascading style sheets after a page is
> > > created? We want to do global changes without having to apply css to
> > > each page element individually. Using FP2002. Thanks for any input.

> >
> > Sure. Create a CSS file and then create a style sheet link to the page.
> >
> > For creating a CSS file, I highly recommend that you check out TopStyle
> > Pro.
> >
> > http://www.bradsoft.com/topstyle/
> >
> > --
> > Jim Cheshire
> > JIMCO
> > http://www.jimcoaddins.com
> >
> > New Spawn Version!
> > Version 1.9.6 adds new features!
> > Get it today FREE at:
> > http://www.jimcoaddins.com
> >
> >
> >

>
>



 
Reply With Quote
 
Jim Cheshire \(JIMCO\)
Guest
Posts: n/a
 
      3rd May 2005
Chris Leeds, MVP-FrontPage wrote:
> If I remember right; topstyle has a function to remove styles and
> font tags from the pages in a web.
>
> --


You do remember right. TopStyle has several different options available to
do this.

--
Jim Cheshire
JIMCO
http://www.jimcoaddins.com

New Spawn Version!
Version 1.9.6 adds new features!
Get it today FREE at:
http://www.jimcoaddins.com



 
Reply With Quote
 
Jens Peter Karlsen[FP MVP]
Guest
Posts: n/a
 
      3rd May 2005
Also remember at FP itself can do it. Select all (or parts) and select
Format | Remove formatting.

Regards Jens Peter Karlsen. Microsoft MVP - Frontpage.

> -----Original Message-----
> From: Jim Cheshire (JIMCO) [private.php?do=newpm&u=]
> Posted At: 3. maj 2005 16:01
> Posted To: microsoft.public.frontpage.client
> Conversation: Adding CSS
> Subject: Re: Adding CSS
>
>
> Chris Leeds, MVP-FrontPage wrote:
> > If I remember right; topstyle has a function to remove

> styles and font
> > tags from the pages in a web.
> >
> > --

>
> You do remember right. TopStyle has several different
> options available to do this.
>
> --
> Jim Cheshire
> JIMCO
> http://www.jimcoaddins.com
>
> New Spawn Version!
> Version 1.9.6 adds new features!
> Get it today FREE at:
> http://www.jimcoaddins.com
>
>
>


 
Reply With Quote
 
=?Windows-1252?Q?Rob_Giordano_\=28Crash_Gordon=AE\
Guest
Posts: n/a
 
      3rd May 2005
I'm still a noob with CSS. I do use Topstyle Pro and have it set as my editor. Does this feature "know" what styles it should replace?...or do I have to actually read the instructions again <sigh>...


"Jim Cheshire (JIMCO)" <(E-Mail Removed)> wrote in message news:O4yPEi%(E-Mail Removed)...
> Chris Leeds, MVP-FrontPage wrote:
> > If I remember right; topstyle has a function to remove styles and
> > font tags from the pages in a web.
> >
> > --

>
> You do remember right. TopStyle has several different options available to
> do this.
>
> --
> Jim Cheshire
> JIMCO
> http://www.jimcoaddins.com
>
> New Spawn Version!
> Version 1.9.6 adds new features!
> Get it today FREE at:
> http://www.jimcoaddins.com
>
>
>

 
Reply With Quote
 
 
 
Reply

Thread Tools
Rate This Thread
Rate This Thread:

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are Off


Similar Threads
Thread Thread Starter Forum Replies Last Post
Need help please, Having trouble finding/adding users for purpose of granting permissions or adding them to groups in a win 2k domain on an XP workstation. rmalph@happy.days Microsoft Windows 2000 Security 4 16th Oct 2004 07:11 AM
Need help please, Having trouble finding/adding users for purpose of granting permissions or adding them to groups in a win 2k domain on an XP workstation. rmalph@happy.days Microsoft Windows 2000 New Users 1 12th Oct 2004 07:13 PM
Need help please, Having trouble finding/adding users for purpose of granting permissions or adding them to groups in a win 2k domain on an XP workstation. rmalph@happy.days Microsoft Windows 2000 Deployment 0 11th Oct 2004 11:39 PM
Need help please, Having trouble finding/adding users for purpose of granting permissions or adding them to groups in a win 2k domain on an XP workstation. rmalph@happy.days Microsoft Windows 2000 0 11th Oct 2004 11:37 PM
Need help please, Having trouble finding/adding users for purpose of granting permissions or adding them to groups in a win 2k domain on an XP workstation. rmalph@happy.days Microsoft Windows 2000 Deployment 0 11th Oct 2004 11:35 PM


Features
 

Advertising
 

Newsgroups
 


All times are GMT +1. The time now is 01:47 AM.