How to control font size on eBay list

I am trying to control the font size on the eBay list so that it looks the same (more or less) in Firefox and Internet Explorer 8.

To simplify things, I just specify one font size for all body text:

<body style="font-family: Verdana; font-size: 12px;">
 ...
</body>

However, although locally (on my PC) the font looks the way I want it to look like this:

Firefox 3.6:

enter image description here

Internet Explorer 8:

enter image description here

In eBay itself, the font looks a lot bigger ( not what I want):

Firefox 3.6 on eBay:

enter image description here

Internet Explorer 8 on eBay:

enter image description here

I tried, of course, a different specification of the font size unit ( em, %etc.), but the discrepancy remains.

Why is this happening and how can I get around this (without resorting to posting a text image ...).

, - eBay CSS HTML ( CSS, !), , eBay not, .

, ?

+3
2

, , CSS !important?

:

foo: bar !important;

Firebug Firefox ( Chrome Google Chrome) , , .

, - ( style=) . , .


, -, . :

CSS, :

body * {
  foo: bar;
}

, :

body p {
  foo: baz;
}

p , * .

style=, <body style="..., CSS , , .

style= HTML:

<body>
  <p style="...">My content</p>
</body>

, .

+5

.

, id, ,   < > ,

<div id="myauction">

.

</div><!-- END OF MYAUCTION -->
</body>

, , id,

<div id="column1">
<div class="itemdetails">
<h2>Item name</h2>
<p>Item description</p>
</div><!-- END OF ITEMDETAILS -->
</div><!-- END OF COLUMN1 -->

CSS -   #myauction # column1.itemdetails h2 {: ; ....}   #myauction # column1.itemdetails p {font-family: Helvetica; ....}

h2 p (), , Ebay CSS.

() , , . , .

+3

All Articles