navigation
a webmaster learning community
     Home    Register     Search      Help      Login    
Sponsors

Shopping Cart Software
Ecommerce software integrated into Frontpage, Dreamweaver and Golive templates. No monthly fees and available in ASP and PHP versions.

Website Templates
We also have a wide selection of Dreamweaver, Expression Web and Frontpage templates as well as webmaster tools and CSS layouts.

Frontpage website templates
Creative Website Templates for FrontPage, Dreamweaver, Flash, SwishMax

Search Forums
 

Advanced search
Recent Posts

 Todays Posts
 Most Active posts
 Posts since last visit
 My Recent Posts
 Mark posts read

Microsoft MVP

 

Italics and not wanting to display italics

 
View related threads: (in this forum | in all forums)

Logged in as: Guest
Users viewing this topic: none
Printable Version 

All Forums >> Web Development >> Cascading Style Sheets >> Italics and not wanting to display italics
Page: [1]
 
Reflect

 

Posts: 4769
From: USA
Status: offline

 
Italics and not wanting to display italics - 11/24/2003 11:09:18   
Hi,

I thought the title of the post might catch some eyes.

My question is I have an <i> tag. I want to in my external CSS file set the <i> tag with a class to not display italics. I know this sound different but I am playing with some SEO thoughts.

I have been searching for a while and coming up empty.

Thanks,

Brian

< Message edited by Reflect -- 11/24/2003 11:30:26 AM >


_____________________________

c1sissy

 

Posts: 5084
Joined: 7/20/2002
From: NJ
Status: offline

 
RE: Italics and not wanting to display italics - 11/24/2003 11:48:26   
quote:

ORIGINAL: Reflect

Hi,

I thought the title of the post might catch some eyes.

My question is I have an <i> tag. I want to in my external CSS file set the <i> tag with a class to not display italics. I know this sound different but I am playing with some SEO thoughts.

I have been searching for a while and coming up empty.

Thanks,

Brian


oops, mis read what you typed. I thought that you wanted it to display, sorry. my mis reading.

< Message edited by c1sissy -- 11/24/2003 11:49:31 AM >


_____________________________

Deb-aka-c4Ksissy
high panjandurum and alpha female of the silverback tribe
As decreed by Jesper 5-24-2003.
The only stupid question is... the one that is never asked!!
http://directory.css-styling.com
http://fmsforum.com
http://positioniseverything.net/
http://www.tanfa.co.uk/

(in reply to Reflect)
Reflect

 

Posts: 4769
From: USA
Status: offline

 
RE: Italics and not wanting to display italics - 11/25/2003 12:38:11   
I figured this was a doomed one. Just wanted to verify.

TIA,

Brian

_____________________________


(in reply to c1sissy)
bobby

 

Posts: 11394
Joined: 8/15/1969
From: Seattle WA USA
Status: offline

 
RE: Italics and not wanting to display italics - 11/25/2003 14:19:38   
I don't suppose you've tried this?

i {
font-style: normal;
}


Just a guess...

_____________________________

If con is the opposite of pro, is Congress the opposite of progress?


:)

(in reply to Reflect)
Nancy

 

Posts: 3626
Joined: 11/9/1999
From: Nebraska
Status: offline

 
RE: Italics and not wanting to display italics - 11/25/2003 14:19:41   
You should be able to just redefine the <i> tag, or make a class to apply to the <i> tag.

This first one should make the font normal for all instances of <i> in the source code.

i {
font-style: normal;
}

Or you could leave the tag as it usually is, and make a class for those instances where you don't want the font to appear as italics.

.nonitalic {
font-style: normal;
}

Then your html would be <i class="nonitalic"> and it would actually show as non-italic.

How you do this would actually depend on whether you were wanting to redefine for all instances or just some.

You would probably also want to do the same for <em> which is also used by some HTML editors.

I hope some of this made sense. *S*

Nancy

_____________________________

Easy Estimates -- is a simple to use tool to quickly build a Web site page enabling visitors to quickly and easily create an estimate of the cost of services that you provide.

(in reply to Reflect)
bobby

 

Posts: 11394
Joined: 8/15/1969
From: Seattle WA USA
Status: offline

 
RE: Italics and not wanting to display italics - 11/25/2003 14:20:25   
Hey Nancy...

Jinx!

:)

_____________________________

If con is the opposite of pro, is Congress the opposite of progress?


:)

(in reply to Nancy)
Nancy

 

Posts: 3626
Joined: 11/9/1999
From: Nebraska
Status: offline

 
RE: Italics and not wanting to display italics - 11/25/2003 14:30:54   
o-man-o-man

by 3 lousy seconds!!

:)

Nancy

_____________________________

Easy Estimates -- is a simple to use tool to quickly build a Web site page enabling visitors to quickly and easily create an estimate of the cost of services that you provide.

(in reply to bobby)
c1sissy

 

Posts: 5084
Joined: 7/20/2002
From: NJ
Status: offline

 
RE: Italics and not wanting to display italics - 11/26/2003 6:58:45   
Nancy and Bobby, I just love it when you two post together!

Nancy, if you were a tad shorter on your explaination, you would have beat bobby!:):)

Good answer, thanks for the explaination.

_____________________________

Deb-aka-c4Ksissy
high panjandurum and alpha female of the silverback tribe
As decreed by Jesper 5-24-2003.
The only stupid question is... the one that is never asked!!
http://directory.css-styling.com
http://fmsforum.com
http://positioniseverything.net/
http://www.tanfa.co.uk/

(in reply to Nancy)
Reflect

 

Posts: 4769
From: USA
Status: offline

 
RE: Italics and not wanting to display italics - 11/26/2003 8:00:23   
Sweet, I didn't think of that.

Just to give the reason, since you both were great enough to wake my brain up...

One step of my SEO routine is to bold, italicize keywords (among other tags). I think it detracts from the sites look. So this way I can still have the SE give a higher weight for the keyword but not mess up the view.

Thanks again all,

Brian

< Message edited by Reflect -- 11/26/2003 8:00:39 AM >


_____________________________


(in reply to c1sissy)
bobby

 

Posts: 11394
Joined: 8/15/1969
From: Seattle WA USA
Status: offline

 
RE: Italics and not wanting to display italics - 11/26/2003 17:18:24   
tricky... let us know if it has any effect...

If not, try doing the same with the <h1> tag, ROFL!

_____________________________

If con is the opposite of pro, is Congress the opposite of progress?


:)

(in reply to Reflect)
Peppergal

 

Posts: 2204
Joined: 9/20/2002
Status: offline

 
RE: Italics and not wanting to display italics - 11/28/2003 19:52:01   
Wow. I had no idea that bolding and italicizing keywords boosts SE ratings!

_____________________________

Northeast PA / Poconos/ Lake Wallenpaupack Real Estate
wallenpaupacklakeproperty.com
Karen's Real Estate Blog

(in reply to Reflect)
Page:   [1]

All Forums >> Web Development >> Cascading Style Sheets >> Italics and not wanting to display italics
Page: [1]
Jump to: 1





New Messages No New Messages
Hot Topic w/ New Messages Hot Topic w/o New Messages
Locked w/ New Messages Locked w/o New Messages
 Post New Thread
 Reply to Message
 Post New Poll
 Submit Vote
 Delete My Own Post
 Delete My Own Thread
 Rate Posts