473,545 Members | 2,115 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

Spacing in IE and Firefox is different


hi

Please see http://thatshindi.oneindia.in in Firefox and IE7. The
spacing between the lines are different. What we see in Firefox is
what we desire.

How do we fix things to make it look right in IE7. To make things
simpler we have uploaded only part of the text on
http://images.oneindia.in/temp/spacing.html The space between the
bullets in IE7 is more than what we want.

Any help is appreciated.

-- greynium
Jan 9 '08 #1
6 3797
greynium wrote:
hi

Please see http://thatshindi.oneindia.in in Firefox and IE7. The
spacing between the lines are different. What we see in Firefox is
what we desire.

How do we fix things to make it look right in IE7. To make things
simpler we have uploaded only part of the text on
http://images.oneindia.in/temp/spacing.html The space between the
bullets in IE7 is more than what we want.

Any help is appreciated.
Wow! DIViditis! Why are you using nested DIVs and SPANs to accomplish
what HTML already has an element for a list, UL. Tou just have a
bulleted list of links:

<ul>
<li><a href="...">...</a></li>
<li><a href="...">...</a></li>
<li><a href="...">...</a></li>
....
</ul>

I guess class names like "Mnormal4" is a clue. Don't use MS Word to make
web pages.

--
Take care,

Jonathan
-------------------
LITTLE WORKS STUDIO
http://www.LittleWorksStudio.com
Jan 9 '08 #2
On 9 jan, 03:44, greynium <greyn...@gmail .comwrote:
hi

Please seehttp://thatshindi.onei ndia.inin Firefox and IE7. The
spacing between the lines are different. What we see in Firefox is
what we desire.

How do we fix things to make it look right in IE7. To make things
simpler we have uploaded only part of the text onhttp://images.oneindia .in/temp/spacing.htmlThe space between the
bullets in IE7 is more than what we want.

Any help is appreciated.

-- greynium
Greynium,

Jonathan is absolutely correct: there are <div>s everywhere in that
webpage and dozens and dozens of CSS declarations.

You definitely should stop using MS-Word to edit your webpages. MS-
Word is a very bad product to use to create webpages.

All you need is a simple list of links like Jonathan told you.

Hand-coding is best but if you are not experienced in web authoring,
then I suggest you
try KompoZer 0.7.10
http://www.kompozer.net/

and then I suggest some reading, learning:

Web design resources: Learning, tips, CSS page templates, tutorials
http://www.gtalbot.org/NvuSection/Nv...Resources.html

KompoZer User Guide (english)
http://www.charlescooke.me.uk/web/ugs01.htm
http://www.charlescooke.me.uk/web/kz-ug-home.htm

Regards, Gérard
Jan 10 '08 #3

hi

Thanks for the suggestion.
We made the changes and they are at http://images.oneindia.in/temp/spacing-ul.html
The only issue we had with the ul/li's was that in 800x600 or even
1024 resolution the bullets looked very huge. We did not want it to be
so prominent.

Do you folks have any suggestion on what we could use for the bullets
that would look classy in all resolutions?

regards,
On Jan 10, 11:46 am, GTalbot <newsgr...@gtal bot.orgwrote:
>
Jonathan is absolutely correct: there are <div>s everywhere in that
webpage and dozens and dozens of CSS declarations.

You definitely should stop using MS-Word to edit your webpages. MS-
Word is a very bad product to use to create webpages.

All you need is a simple list of links like Jonathan told you.

Hand-coding is best but if you are not experienced in web authoring,
then I suggest you
try KompoZer 0.7.10http://www.kompozer.ne t/

and then I suggest some reading, learning:

Web design resources: Learning, tips, CSS page templates, tutorialshttp://www.gtalbot.org/NvuSection/NvuWebDesignTip s/WebDesignResour ces...

KompoZer User Guide (english)http://www.charlescooke.me.uk/web/ug...kz-ug-home.htm

Regards, Gérard
Jan 10 '08 #4
[Top-posting fixed...]

In article
<e6************ *************** *******@d21g200 0prf.googlegrou ps.com>,
greynium <gr******@gmail .comwrote:
On Jan 10, 11:46 am, GTalbot <newsgr...@gtal bot.orgwrote:

Jonathan is absolutely correct: there are <div>s everywhere in that
webpage and dozens and dozens of CSS declarations.

You definitely should stop using MS-Word to edit your webpages. MS-
Word is a very bad product to use to create webpages.

All you need is a simple list of links like Jonathan told you.

Hand-coding is best but if you are not experienced in web authoring,
then I suggest you
try KompoZer 0.7.10http://www.kompozer.ne t/
[snip]
hi

Thanks for the suggestion.
We made the changes and they are at
http://images.oneindia.in/temp/spacing-ul.html
The only issue we had with the ul/li's was that in 800x600 or even
1024 resolution the bullets looked very huge. We did not want it to be
so prominent.

Do you folks have any suggestion on what we could use for the bullets
that would look classy in all resolutions?
They look absolutely fine to me. I wouldn't worry about it, since the
size of the bullets is going to vary from browser to browser, and since
you cannot possibly know how big a user's window is going to be when
they browse your site, let alone their monitor settings.

I would, however, suggest cleaning up your css a little - you don't
really need to explicitly put the same class on every li and a in
your ul - you can write css rules such that this is automatically done
for you.

So in your style sheet you can write:

ul.spacingul li, ul.spacingul li a {
/* Mnormal4 styles go in here */
}

I'd also avoid setting font sizes in px units - use 100% for the body,
and maybe 125% for headings and your .spacingul class.

That's already more CSS than should be appropriate for this newsgroup,
though - ask in comp.infosystem s.www.authoring.stylesheets if you need
more help with that.
Jan 10 '08 #5
On 10 jan, 04:58, greynium <greyn...@gmail .comwrote:
hi

Thanks for the suggestion.
We made the changes and they are athttp://images.oneindia .in/temp/spacing-ul.html
The only issue we had with the ul/li's was that in 800x600 or even
1024 resolution the bullets looked very huge. We did not want it to be
so prominent.

Do you folks have any suggestion on what we could use for the bullets
that would look classy in all resolutions?

regards,
Greynium,

I again agree with the suggestions submitted by David Stone. The size
of bullets are fine and the size of bullets should now be the very
last concern regarding your site. Your website has a lot of
improvement work to do.

Font size should be ideally in relative unit like %, not in pixels.
"
Do not specify the font-size in pt, or other absolute length units
(like px) for screen stylesheets. They render inconsistently across
platforms and can't be resized by the User Agent (e.g browser). Keep
the usage of such units for styling on media with fixed and known
physical properties (e.g print).
Use relative length units such as percent
"
W3C Quality Assurance tip for webmasters:
Care With Font Size
http://www.w3.org/QA/Tips/font-size

Also
http://k75s.home.att.net/fontsize.html by Beauregard T. Shagnasty
is worth reading and is often mentionned in this newsgroup.

Your css declarations and css rules should be reviewed, clarified,
trimmed, simplified: you are definitely over-coding, over-declaring
and over-constraining. You need here to understand what is CSS
inheritance and how to use it. You also need to understand that
browsers have default values and that CSS 2.1 specification suggests,
recommend default, initial values to properties.

I can not go over all of this with you. Before asking questions in
newsgroups, I strongly recommend that you start with the reading
(tutorials) that was proposed to you so that you can start swimming on
your own, so that you can start fishing by yourself.

Regards, Gérard
Jan 10 '08 #6
Gazing into my crystal ball I observed greynium <gr******@gmail .com>
writing in
news:e6******** *************** ***********@d21 g2000prf.google groups.com:

Please do not top post - posting correct at bottom
>
On Jan 10, 11:46 am, GTalbot <newsgr...@gtal bot.orgwrote:
>>
Jonathan is absolutely correct: there are <div>s everywhere in that
webpage and dozens and dozens of CSS declarations.

You definitely should stop using MS-Word to edit your webpages. MS-
Word is a very bad product to use to create webpages.

All you need is a simple list of links like Jonathan told you.

Hand-coding is best but if you are not experienced in web authoring,
then I suggest you
try KompoZer 0.7.10http://www.kompozer.ne t/

and then I suggest some reading, learning:

Web design resources: Learning, tips, CSS page templates,
tutorialshtt p://
http://www.gtalbot.org/NvuSection/Nv...esignResources...
>>
KompoZer User Guide
(english)http://www.charlescooke.me.uk/web/ugs01.htmht
tp://www.charlescook e.me.uk/web/kz-ug-home.htm
>>
hi

Thanks for the suggestion.
We made the changes and they are at
http://images.oneindia.in/temp/spacing-ul.html The only issue we had
with the ul/li's was that in 800x600 or even 1024 resolution the
bullets looked very huge. We did not want it to be so prominent.

Do you folks have any suggestion on what we could use for the bullets
that would look classy in all resolutions?
There are all kinds of different "bullets" you can use, or even no
bullets at all. [http://www.w3.org/TR/CSS21/generate.html#list-style]

Also consider that 800x600 or 1024 is empty and meaningless. You do not
know the user's window size (yes, you can _try_ to get it, but browsers
can lie or not give up the information). You do not even know if the
user is using a browser at all - it could be a phone, or a refrigerator
for that matter. Your best bet is to use a flexible design.
--
Adrienne Boswell at Home
Arbpen Web Site Design Services
http://www.cavalcade-of-coding.info
Please respond to the group so others can share

Jan 11 '08 #7

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

Similar topics

12
39090
by: Rick DeBay | last post by:
I'm trying to create a layout table, where the spacing between rows varies. I've tried using setting margin-top and border-top for the rows I wan't spaced down from the one above, and I've also tried setting it on all of the cells of that row. This hasn't worked, so I was wondering if anyone knew how it could be done. Thanks, Rick DeBay
1
3303
by: Jim Moe | last post by:
Hello, I am (slowly) in the process of changing a table-based layout to CSS/div-based. One area that uses tables a lot is the main nav menu. I have discovered that tables have advantage: all browsers display them the same. I created a CSS to use <ul> as the list container rather than <table>. It works quite well -- in Mozilla. With IE V5 or...
38
23945
by: Xah Lee | last post by:
sometimes i wish to add white space in <p> as to achived effects similar to tab. what should i do? using empty image seems the sure way but rather complicated. (and dosen't change size with font) Woudl some of the space character in unicode work? (my html files uses unicode) Xah
4
2454
by: metoikos | last post by:
I've scoured the web (clumsily, I'm sure) for information on the difficulties I am having, checked my markup in validators, and had a friend with more CSS clue look over it, but I haven't had any luck. I'll detail my difficulties here and hope for help. I will note that I'm using headings to delineate different sections of my message for...
10
11023
by: phil-news-nospam | last post by:
I have a table with 3 columns in 1 row. I want to increase the spacing _between_ the columns (gutter) _without_ increasing the spacing between those columns and the table itself. Is there a way to do that in CSS without having to code in extra dummy columns in HTML to create gutters? --...
0
1253
by: phil-news-nospam | last post by:
This is expanding on my previous question about gutters in tables. Here are 3 URLs for sample pages I'm testing with. They vary only by the table element attribute cellspacing, with values 0, 1, and 2: http://phil.ipal.org/usenet/ciwas/2006-04-28/boxes0.html http://phil.ipal.org/usenet/ciwas/2006-04-28/boxes1.html...
6
5029
by: mno | last post by:
Hi all, I have a problem that I've been stuck with for the last couple of days that's driving me a bit more than crazy at this point. Sorry if this message is not very clear. I have a design that resembles the following: <div id="main"> <div class="image">
1
2129
by: djs1979 | last post by:
Hello, First time "designer" here. I've mostly used CoffeeCup Vis Designer (a WYSIWYG prog for those unfamiliar with it), and dropped in some code by hand here and there. My problem is with the text in the three boxes on the default page of my site: www.stonestreetconsulting.net/ (I'm ignoring the other pages for now, since I haven't...
4
1313
Curtis Rutland
by: Curtis Rutland | last post by:
Sorry, me again. Now I have the opposite problem. Actually, I'm fairly certain Firefox is spacing them right, I just can't see what is wrong with my code. I've got the site live at http://www.curtisrutland.com, so I won't repaste all my code. Here's a link to my stylesheet. If you load the site in IE, and then Firefox, the problem is...
0
7468
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However, people are often confused as to whether an ONU can Work As a Router. In this blog post, we’ll explore What is ONU, What Is Router, ONU & Router’s main...
0
7808
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 tapestry of website design and digital marketing. It's not merely about having a website; it's about crafting an immersive digital experience that...
1
7423
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 Update option using the Control Panel or Settings app; it automatically checks for updates and installs any it finds, whether you like it or not. For...
0
7757
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 protocol has its own unique characteristics and advantages, but as a user who is planning to build a smart home system, I am a bit confused by the...
0
4945
by: conductexam | last post by:
I have .net C# application in which I am extracting data from word file and save it in database particularly. To store word all data as it is I am converting the whole word file firstly in HTML and then checking html paragraph one by one. At the time of converting from word file to html my equations which are in the word document file was convert...
0
3450
by: TSSRALBI | last post by:
Hello I'm a network technician in training and I need your help. I am currently learning how to create and manage the different types of VPNs and I have a question about LAN-to-LAN VPNs. The last exercise I practiced was to create a LAN-to-LAN VPN between two Pfsense firewalls, by using IPSEC protocols. I succeeded, with both firewalls in...
0
3443
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?
1
1884
by: 6302768590 | last post by:
Hai team i want code for transfer the data from one system to another through IP address by using C# our system has to for every 5mins then we have to update the data what the data is updated we have to send another system
0
704
bsmnconsultancy
by: bsmnconsultancy | last post by:
In today's digital era, a well-designed website is crucial for businesses looking to succeed. Whether you're a small business owner or a large corporation in Toronto, having a strong online presence can significantly impact your brand's success. BSMN Consultancy, a leader in Website Development in Toronto offers valuable insights into creating...

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.