473,409 Members | 2,006 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,409 software developers and data experts.

Ignore CSS table formatting & use standard HTML?

I'm not sure if this is possible, but if a page uses a CSS style sheet
and you would still like to use good old <font> tags... is there a tag
to tell the browser to ignore the CSS formatting just for that table
cell?

I work for a company that has their website built from a 3rd party.
We're very restricted in how we can redesign the pages. The only
"content" we're allowed to add come in after the <head> tags... so the
CSS is already in place. So now if I create any text below using
<font> tags, the tags are ignored because of the use of CSS. And
unfortunately, we have no access to the style sheet to add in new
styles for our own text.

So I'm trying to find a table tag or something where I can tell the
browser to ignore the CSS formatting just for that instance of text.

Any help on this would be greatly appreciated.

Kevin G.

Jul 24 '05 #1
6 8967
Kevin G. wrote:
I'm not sure if this is possible, but if a page uses a CSS style sheet
and you would still like to use good old <font> tags... is there a tag
to tell the browser to ignore the CSS formatting just for that table
cell?

I work for a company that has their website built from a 3rd party.
We're very restricted in how we can redesign the pages. The only
"content" we're allowed to add come in after the <head> tags... so the
CSS is already in place. So now if I create any text below using
<font> tags, the tags are ignored because of the use of CSS. And
unfortunately, we have no access to the style sheet to add in new
styles for our own text.

So I'm trying to find a table tag or something where I can tell the
browser to ignore the CSS formatting just for that instance of text.

Any help on this would be greatly appreciated.


You could use the STYLE attribute within the table to define the CSS you
want used. E.g. if the content of a TD is supposed to be centred, you
can do:

<td style="text-align:center;">

Jul 24 '05 #2
Kevin G. wrote:
I'm not sure if this is possible, but if a page uses a CSS style sheet
and you would still like to use good old <font> tags...
What a strange thing to want.
is there a tag
to tell the browser to ignore the CSS formatting just for that table
cell?
No.
I work for a company that has their website built from a 3rd party.
We're very restricted in how we can redesign the pages.
Ooops.
we have no access to the style sheet to add in new
styles for our own text.


Does this third party also host the site? Sounds like the best solution
would be to find a provider that gave you the control you need.
--
David Dorward <http://blog.dorward.me.uk/> <http://dorward.me.uk/>
Home is where the ~/.bashrc is
Jul 24 '05 #3
On 6 Apr 2005 13:02:14 -0700, "Kevin G." <kg********@gmail.com> wrote:
So now if I create any text below using
<font> tags, the tags are ignored because of the use of CSS.


They're not ignored, but they form part of the CSS cascade.

You can also use CSS. Wrap your content in a <div> with some
appropriate CSS in the style attribute. You can achieve most things
this way.

You could also inline a CSS stylesheet into the body of the page. This
isn't valid HTML, but it's a common and workable hack when outside
agencies control half the page (Anyone else had to try and integrate
with the infernal MSN ?)

And dump the unhelpful 3rd party developers.

Jul 24 '05 #4

"Andy Dingley" <di*****@codesmiths.com> wrote in message
news:uc********************************@4ax.com...
On 6 Apr 2005 13:02:14 -0700, "Kevin G." <kg********@gmail.com> wrote:
So now if I create any text below using
<font> tags, the tags are ignored because of the use of CSS.


They shouldn't be ignored. Doesn't inline take precedence over embedded CSS
& stylesheets? (Help me with the terms:) I mean, if you specify anything
right in the body using standard HTML, doesn't the browser display that
instead of the CSS?

Carla
Jul 24 '05 #5
in comp.infosystems.www.authoring.html, c.thornquist wrote:

"Andy Dingley" <di*****@codesmiths.com> wrote in message
news:uc********************************@4ax.com...
On 6 Apr 2005 13:02:14 -0700, "Kevin G." <kg********@gmail.com> wrote:
So now if I create any text below using
<font> tags, the tags are ignored because of the use of CSS.


They shouldn't be ignored. Doesn't inline take precedence over embedded CSS
& stylesheets?


Inline CSS does. HTML doesn't.
(Help me with the terms:) I mean, if you specify anything
right in the body using standard HTML, doesn't the browser display that
instead of the CSS?


No, at least it shouldn't.

--
Lauri Raittila <http://www.iki.fi/lr> <http://www.iki.fi/zwak/fonts>
Utrecht, NL.
Support me, buy Opera:
https://secure.bmtmicro.com/opera/bu...tml?AID=882173
Jul 24 '05 #6

"Lauri Raittila" <la***@raittila.cjb.net> wrote in message
news:MP************************@news.individual.ne t...
in comp.infosystems.www.authoring.html, c.thornquist wrote:

"Andy Dingley" <di*****@codesmiths.com> wrote in message
news:uc********************************@4ax.com...
> On 6 Apr 2005 13:02:14 -0700, "Kevin G." <kg********@gmail.com> wrote:
>
>> So now if I create any text below using
>><font> tags, the tags are ignored because of the use of CSS.
>


They shouldn't be ignored. Doesn't inline take precedence over embedded
CSS
& stylesheets?


Inline CSS does. HTML doesn't.
(Help me with the terms:) I mean, if you specify anything
right in the body using standard HTML, doesn't the browser display that
instead of the CSS?


No, at least it shouldn't.

--
Lauri Raittila <http://www.iki.fi/lr> <http://www.iki.fi/zwak/fonts>
Utrecht, NL.
Support me, buy Opera:
https://secure.bmtmicro.com/opera/bu...tml?AID=882173


IE gives standard HTML precedence over CSS. I thought the other browsers did
as well. I'll check.

Carla
Jul 24 '05 #7

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

11
by: alex | last post by:
Hi, I am looking for a way to populate an HTML table from an external local text file which looks like this: DATE/TIME LAT. LON. DEPTH. ML....
0
by: Thomas Scheffler | last post by:
Hi, I runned in trouble using XALAN for XSL-Transformation. The following snipplet show what I mean: <a href="http://blah.com/?test=test&amp;test2=test2">Test1&amp;</a> <a...
5
by: Jukka K. Korpela | last post by:
The HTML specifications define the entities &zwj;, &zwnj;, &lrm;, &rlm; as denoting zero-width joiner, zero-width non-joiner, left to right mark, and right to left mark. Is there any evidence of...
47
by: Neal | last post by:
Patrick Griffiths weighs in on the CSS vs table layout debate in his blog entry "Tables my ass" - http://www.htmldog.com/ptg/archives/000049.php . A quite good article.
4
by: deko | last post by:
I've heard it's best not to have any formatting specified for Table fields (except perhaps Currency), and instead set the formatting in the Form or Report. But what about Yes/No fields? When I...
10
by: Coleen | last post by:
Hi all :-) I have a weird formatting problem with an HTML table that I am populating using VB.Net and HTML. Here is the snippet of code for the cell I'm trying to format: Dim...
4
by: manwslohand | last post by:
Newbie here. Stupid question follows. Please be kind. I'm using c#.net 2003 and have a web form that uses a datagrid to display a list from a table. It's working okay but I want to expand the...
2
by: kilo | last post by:
Hey.. I need someone hwo can help me making my sql table.. I have no php skills. I have payed for a php program that shoud make dictation for people that have some problems reading danish.. with...
10
by: Greg Lovern | last post by:
I have a very large html table created by MS Word, saved as it's "Web Page, Filtered" file type. Every html table cell has lots of formatting tags. Most of the file size is that formatting. Is...
0
by: emmanuelkatto | last post by:
Hi All, I am Emmanuel katto from Uganda. I want to ask what challenges you've faced while migrating a website to cloud. Please let me know. Thanks! Emmanuel
1
by: nemocccc | last post by:
hello, everyone, I want to develop a software for my android phone for daily needs, any suggestions?
1
by: Sonnysonu | last post by:
This is the data of csv file 1 2 3 1 2 3 1 2 3 1 2 3 2 3 2 3 3 the lengths should be different i have to store the data by column-wise with in the specific length. suppose the i have to...
0
by: Hystou | last post by:
There are some requirements for setting up RAID: 1. The motherboard and BIOS support RAID configuration. 2. The motherboard has 2 or more available SATA protocol SSD/HDD slots (including MSATA, M.2...
0
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers,...
0
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven...
0
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows...
0
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each...
0
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing,...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.