Results 1 to 7 of 7

Thread: Frames issue.. easy... but :(

  1. #1
    Join Date
    Feb 2007
    Posts
    16
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Default Frames issue.. easy... but :(

    I have created website using frames... top, left, center and bottom. The content only changes with center page (only this has auto scroller not other frame)whenever a link is clicked in the top frame. it works fine!

    But No, now a stupid problem...

    1)
    I want the entire website to be centralised with a blue bg color. so i do that. but what happens??? the left frame isnt aligned with center frame. I mean even if in left frame, I have made the main table ALIGN= center or left or right, the entire left and centerpage is getting upset. what shud i do???? I have fixed table width= 210 px in the left frame and in the center frame fixed table width=580pix. And I have ALIGN= Center in all the frames.

    Am I missing something here guys??

    2)

    Secondly, the frames are 8-10 kb individually but they are so slow to load!! does that happen with FRAMES? should i use iframes? how? I use only dreamweaver.

  2. #2
    Join Date
    Aug 2005
    Posts
    200
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Default

    Quote Originally Posted by newj View Post
    I use only dreamweaver.
    Theres your problem. Did you use the program to change the background color or did you do it yourself? I am not certain but it might be confusing the browser to center all of your frames. Try telling them to align how they should. How many frames are you using that makes loading so slow?

  3. #3
    Join Date
    Feb 2007
    Posts
    16
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Default

    I am using 4 frames.and I have give bg color to all files

  4. #4
    Join Date
    Feb 2007
    Posts
    16
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Default

    I am using 4 frames.and I have give bg color to all files

  5. #5
    Join Date
    Feb 2007
    Location
    the local group
    Posts
    6
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Default

    copy, and paste the entire code onto this forums. Make sure you quote it so its easy to read. Someone might be able to give you a solution to your problem

    The problem with wysiwyg editors is that they don't always make your page work the way you want to. You defenitly need some web coding skills to make it really happen.

  6. #6
    Join Date
    Aug 2005
    Posts
    200
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Default

    Take this step by step.
    1. open a new notepad document.
    2. save it in puneet as sidecolor.htm
    3. copy and paste this code into it and save again:
    <html>
    <head>
    <style type="text/css">
    <!--
    body {
    background-color: #043A68
    }
    -->
    </style></head>
    <body>

    </body>
    </html>


    4. After that right click on default and click open with --> notepad
    5. Copy and paste all of this code in and save:
    <html>
    <head>
    <title>:: MobiconC ::</title>
    <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
    <style type="text/css">
    <!--
    body {
    background-color: #043A68
    }
    -->
    </style></head>

    <frameset rows="243,*,30" frameborder="NO" border="0" framespacing="0">
    <frame src="top.htm" name="topFrame" frameborder="no" scrolling="NO" noresize marginwidth="776" marginheight="243">
    <frameset cols="*,230,546,*" frameborder="NO" border="0" framespacing="0">
    <frame src="sidecolor.htm">
    <frame src="left.htm" name="leftframe" scrolling="NO" noresize marginwidth="230">
    <frame src="center.htm" name="centerframe" frameborder="no" scrolling="auto" marginwidth="546">
    <frame src="sidecolor.htm">

    </frameset>
    <frame src="bottom.htm" name="bottomFrame" frameborder="no" scrolling="NO" noresize marginwidth="776" marginheight="30">
    </frameset>
    <noframes><body>
    </body></noframes>
    </html>

    It will work after that.
    What I did is made two more frames that went on the side of the page. these frames are set with * so they will take up any extra room on the outside of the page. The frames on the outside have a background color that is the same as the default page making them not seen on the page. This will fix the alignment with the page no matter how wide it ever gets. If you have any other questions were always here. JF

  7. #7
    Join Date
    Feb 2007
    Posts
    16
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Default

    wow thanks............ it worked!!! sorry for the delayed reply!

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •