PC Review


Reply
Thread Tools Rate Thread

Annoying Formatting

 
 
Victor
Guest
Posts: n/a
 
      26th Jul 2006
I've got a very long list that I want to post, that I want to be formatted like this:

<p><h3>Heading Goes Here</h3>This is the explanation</p>

But when I start with this:

<p>Heading Goes Here This is the explanation</p>

When I select "Heading Goes Here" and then apply H3 to it from the Style drop-down menu,
it applies H3 to the entire line, not only the three words that I only want it to apply
to.

The list is oh so very long, manually applying the HTML is quite tedious.

How do I do this?

Vic




 
Reply With Quote
 
 
 
 
=?Utf-8?B?TWly?=
Guest
Posts: n/a
 
      26th Jul 2006
Why not enter the whole thing in the font you want (default or whatever),
then select the heading only and enlarge the size of it?
Or you can have </p> after the heading and format the resulting two
paragraphs as you wish (for instance, zero space between them).

"Victor" wrote:

> I've got a very long list that I want to post, that I want to be formatted like this:
>
> <p><h3>Heading Goes Here</h3>This is the explanation</p>
>
> But when I start with this:
>
> <p>Heading Goes Here This is the explanation</p>
>
> When I select "Heading Goes Here" and then apply H3 to it from the Style drop-down menu,
> it applies H3 to the entire line, not only the three words that I only want it to apply
> to.
>
> The list is oh so very long, manually applying the HTML is quite tedious.
>
> How do I do this?
>
> Vic
>
>
>
>
>

 
Reply With Quote
 
Stefan B Rusynko
Guest
Posts: n/a
 
      27th Jul 2006
You can not nest a H tag in a P tag
Correct html is
<h3>Heading Goes Here</h3>
<p>This is the explanation</p>

To easily do this to text like
"Heading Goes Here This is the explanation"
Just hit the Enter key after "Here" and apply the H tag to the 1st part
--

_____________________________________________
SBR @ ENJOY (-: [ Microsoft MVP - FrontPage ]
"Warning - Using the F1 Key will not break anything!" (-;
To find the best Newsgroup for FrontPage support see:
http://www.frontpagemvps.com/FrontPa...3/Default.aspx
_____________________________________________


"Victor" <(E-Mail Removed)> wrote in message news:(E-Mail Removed)...
| I've got a very long list that I want to post, that I want to be formatted like this:
|
| <p><h3>Heading Goes Here</h3>This is the explanation</p>
|
| But when I start with this:
|
| <p>Heading Goes Here This is the explanation</p>
|
| When I select "Heading Goes Here" and then apply H3 to it from the Style drop-down menu,
| it applies H3 to the entire line, not only the three words that I only want it to apply
| to.
|
| The list is oh so very long, manually applying the HTML is quite tedious.
|
| How do I do this?
|
| Vic
|
|
|
|


 
Reply With Quote
 
Jens Peter Karlsen [FP-MVP]
Guest
Posts: n/a
 
      27th Jul 2006
You can't as this construct is invalid HTML. It must look like this
instead:
<h3>Heading Goes Here</h3><p>This is the explanation</p>

Regards Jens Peter Karlsen. Microsoft MVP - Frontpage.

On Wed, 26 Jul 2006 13:27:18 -0400, "Victor" <(E-Mail Removed)> wrote:

>I've got a very long list that I want to post, that I want to be formatted like this:
>
><p><h3>Heading Goes Here</h3>This is the explanation</p>
>
>But when I start with this:
>
><p>Heading Goes Here This is the explanation</p>
>
>When I select "Heading Goes Here" and then apply H3 to it from the Style drop-down menu,
>it applies H3 to the entire line, not only the three words that I only want it to apply
>to.
>
>The list is oh so very long, manually applying the HTML is quite tedious.
>
>How do I do this?
>
>Vic
>
>
>

 
Reply With Quote
 
Victor
Guest
Posts: n/a
 
      28th Jul 2006
Three words: Search Engine Optimization.


"Mir" <(E-Mail Removed)> wrote in message
news:088BAAD8-7DD5-4FE1-A003-(E-Mail Removed)...
> Why not enter the whole thing in the font you want (default or whatever),
> then select the heading only and enlarge the size of it?
> Or you can have </p> after the heading and format the resulting two
> paragraphs as you wish (for instance, zero space between them).
>
> "Victor" wrote:
>
> > I've got a very long list that I want to post, that I want to be formatted like

this:
> >
> > <p><h3>Heading Goes Here</h3>This is the explanation</p>
> >
> > But when I start with this:
> >
> > <p>Heading Goes Here This is the explanation</p>
> >
> > When I select "Heading Goes Here" and then apply H3 to it from the Style drop-down

menu,
> > it applies H3 to the entire line, not only the three words that I only want it to

apply
> > to.
> >
> > The list is oh so very long, manually applying the HTML is quite tedious.
> >
> > How do I do this?
> >
> > Vic
> >
> >
> >
> >
> >



 
Reply With Quote
 
Victor
Guest
Posts: n/a
 
      28th Jul 2006
Ah, I think I've got my compliant solution:

Stefan and Jens, I can use the correct HTML you recommend, and get the formatting I want
with these styles inside my ID:

#bodytext h3 {margin-bottom:0px;}
#bodytext p {margin-top:0px;}

That will give me, inside the bodytext ID:


HEADING GOES HERE
This is the explanation, with no blank line above

HEADING GOES HERE AGAIN WITH BLANK LINE
This is the explanation, with no blank line above

Thanks, all

Vic


"Stefan B Rusynko" wrote...
> You can not nest a H tag in a P tag
> Correct html is
> <h3>Heading Goes Here</h3>
> <p>This is the explanation</p>
>
> To easily do this to text like
> "Heading Goes Here This is the explanation"
> Just hit the Enter key after "Here" and apply the H tag to the 1st part
> --
>
> _____________________________________________
> SBR @ ENJOY (-: [ Microsoft MVP - FrontPage ]
> "Warning - Using the F1 Key will not break anything!" (-;
> To find the best Newsgroup for FrontPage support see:
> http://www.frontpagemvps.com/FrontPa...3/Default.aspx
> _____________________________________________
>
>
> "Victor" <(E-Mail Removed)> wrote in message news:(E-Mail Removed)...
> | I've got a very long list that I want to post, that I want to be formatted like

this:
> |
> | <p><h3>Heading Goes Here</h3>This is the explanation</p>
> |
> | But when I start with this:
> |
> | <p>Heading Goes Here This is the explanation</p>
> |
> | When I select "Heading Goes Here" and then apply H3 to it from the Style drop-down

menu,
> | it applies H3 to the entire line, not only the three words that I only want it to

apply
> | to.
> |
> | The list is oh so very long, manually applying the HTML is quite tedious.
> |
> | How do I do this?
> |
> | Vic
> |
> |
> |
> |
>
>



 
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
Find formatting in text in cell, insert tags around formatting. CarlC Microsoft Excel Programming 2 27th Feb 2008 09:26 PM
expanding custom formatting without removing existing cell formatting? Keith Microsoft Excel Worksheet Functions 3 27th Dec 2006 01:54 PM
Annoying automatic date-formatting on import... how to remove it? Jose McNach Microsoft Excel Misc 2 2nd Jun 2006 02:40 PM
How do I remove the annoying automatic date formatting in Excel? =?Utf-8?B?Sm9zZS1FZGluYnVyZ2g=?= Microsoft Excel Misc 1 11th May 2006 11:56 AM
FORMATTING - Annoying Problem Pat Microsoft Excel Misc 2 26th Apr 2004 04:13 PM


Features
 

Advertising
 

Newsgroups
 


All times are GMT +1. The time now is 09:48 AM.