| View previous topic :: View next topic |
| Author |
Message |
pawingpooch

Joined: 06 Jul 2007 Posts: 9 Location: south florida
|
Posted: Fri Jul 06, 2007 7:49 am cellspacing? |
|
|
|
im not sure this is even in the right section! i am very, very, VERY new into html, and am working on redesigning my website. a friend of mine did the intial coding, and i have used that as a basis for everything else.
this website and forums have been extremely helpful this past week as i have started building my site (yes, only a week! tho i have been working with the barebones of html for years). not many issues thus far, just one that is bothering me.. and forgive me if my explaning is garbled as im new in the terms.
my website is http://www.pawingpooch.com. in the updates section is where my issue lies (and when i get to other sections, it will apply there too). in my IE browser, the image/txt fits perfectly in the table. however, in my firefox, the iframes are active and you have to scroll a tiny bit to get the whole picture. in my friends netscape navigator, no problems arose. the up/down vertical scroll bar doesnt bother me - especially since there will be more text added. it is the horizontal scroll bar that i do not like and want to prevent that from happening so it will do the same thing in all browsers.
um.. did that make sense? cheers ahead of time for your help! |
|
Corey Bryant Site Admin

Joined: 15 May 2004 Posts: 8268 Location: Castle Rock CO USA
|
Posted: Fri Jul 06, 2007 10:05 am |
|
|
|
I did not see any scroll bars in the middle while viewing it in Firefox on 1280X1024, 1280X800 or 800X600 resolution. In 800X600, scrollbars were seen in the main window, but the iframe did not scroll
_________________
Corey
Toll Free Fax Numbers | Yahoo Merchant Account |
|
pawingpooch

Joined: 06 Jul 2007 Posts: 9 Location: south florida
|
Posted: Fri Jul 06, 2007 11:53 am |
|
|
|
rilly? thats odd - i am looking at the Updates section right now and i see scroll bars in the iframe - am use firefox at home. my screen is 1680x1050 (widescreen laptop) and it does it. i even put it down to 1280x1024 and it still did it. how can it differ from pc-to-pc even if the screen resolution is the same?
i went to my sisters pc, firefox on there showed scroll bars in the iframe under updates, but the ie in her aol program did not....  |
|
Corey Bryant Site Admin

Joined: 15 May 2004 Posts: 8268 Location: Castle Rock CO USA
|
Posted: Sat Jul 07, 2007 6:18 am |
|
|
|
Ah I see it in the update section. I usually just click on the URL provided.
Looking at http://www.pawingpooch.com/updates.html, you have the same size as your iframe
| Code: |
| <iframe src="home.html" width="486" height="262" frameborder="0" name="content" noresize framspacing="0"> |
| Code: |
| <table id="Table_01" width="486" height="262" border="0" cellpadding="0" cellspacing="0"> |
So you might want to reduce your table some or add the style
| Code: |
| border-collapse: collapse |
as well to your table styles.
_________________
Corey
Toll Free Fax Numbers | Mile High Merchant Accounts |
|
pawingpooch

Joined: 06 Jul 2007 Posts: 9 Location: south florida
|
Posted: Sat Jul 07, 2007 6:32 am |
|
|
|
ah, sorry, about the incorrect link
um.. i know nothing of iframes and tables (like i said, friend built the code for me) - but i am learning.
so if i were to reduce the size of.. the table is it? it would help with the iframe?
and could you explain the style
| Code: |
| border-collapse: collapse |
how it works exactly, what it does... and more importantly.. where in my code it goes?
i appreciate your help, you have no idea!! |
|
Corey Bryant Site Admin

Joined: 15 May 2004 Posts: 8268 Location: Castle Rock CO USA
|
Posted: Sun Jul 08, 2007 8:00 am |
|
|
|
The style goes in your
| Code: |
| <table id="Table_01" width="486" height="262" border="0" cellpadding="0" cellspacing="0"> |
so it would be something like
| Code: |
| <table id="Table_01" width="486" height="262" border="0" cellpadding="0" cellspacing="0" style="border-collapse: collapse"> |
This just helps to collapse the border and not show it.
And yes reduce the table to see if that helps.
_________________
Corey
Toll Free Fax Numbers | Yahoo Merchant Account |
|
pawingpooch

Joined: 06 Jul 2007 Posts: 9 Location: south florida
|
Posted: Sun Jul 08, 2007 8:04 am |
|
|
|
| cheers - i will try that and let you know if it works! |
|
pawingpooch

Joined: 06 Jul 2007 Posts: 9 Location: south florida
|
Posted: Sun Jul 08, 2007 12:43 pm |
|
|
|
it didnt work and when i reduced the size of the table it made the scrolls worse!
this seems to be a browser issue - which pisses me off cuz firefox is my preferred browser and i want my page to look the same in all browsers...
i d/l netscape as well, and it does the same thing. seems ie is the only one that has no issues.
ill research more.. but is there something i can do to at least prevent the horizontal scroll bar from appearing? |
|
pawingpooch

Joined: 06 Jul 2007 Posts: 9 Location: south florida
|
Posted: Sun Jul 08, 2007 12:55 pm |
|
|
|
oops.. nevermind, fixed it!! thanks for the help you gave. im sure ill need more soon enuf  |
|
|