background and frameset prolblems/queries

Ask a Question related to Macromedia Dynamic HTML, Design and Development.

  1. #1

    Default background and frameset prolblems/queries

    1.ive created a fixed top, nested left frameset. ive put the links in the left
    section, and when clicked i want the main body of the page to change and the
    left and top sections to remain static. how do i do this?

    2.ive got an image that i want to use for my background. its just the rite
    size, but when i use the background option in page properties, it tile's the
    background. how do i make it so its just that one image?

    any and all help will be very much appreciated

    malconi Guest

  2. Similar Questions and Discussions

    1. Frameset problem
      Help I hope some one out there can help me. I have made a web site using frames with the idea that the left and top remain static and using the menu...
    2. FRAMESET HELP
      trying my first hand at frames and framesets. I first created a site based on using one frameset, but found that limiting so I learned how to...
    3. Frameset Help Please
      Hi, ive got a problem. I have a four divided frameset. One banner like frame at the top, two right and let menus and one relative center area....
    4. Queries Of Queries Single Quote Problem
      When using queries of queries I'm having the following issue. Select Company_ID From qry_MyQuery Where Company_NM = 'MyString''s' <----...
    5. Frameset
      How do you do a frameset in an aspx page? -- ______________________ David Fetrow HelixPoint LLC. http://www.helixpoint.com...
  3. #2

    Default Re: background and frameset prolblems/queries

    1. First of all you have to give a name to the frame in which you want your
    content to be displayed. If you have used the option from the dreamweaver
    insert menu, then its name should be "mainFrame". you don't have to give a
    name. Then in the page which is the src of your nested frame to the left, the
    links are to be modified. Add the target attribute to each of the links which
    will have the name of the frame in which you want the page to be displayed. For
    eg:-
    <a href="yourpage.htm" target="mainFrame">
    2. Now about the background, you just need to add some css codes. In the code
    view, add this code between the <head> tags:-
    <style type="text/css">
    <!--
    body {
    background-repeat: no-repeat;
    }
    -->
    </style>

    redblue4356 Guest

  4. #3

    Default Re: background and frameset prolblems/queries

    thanks m8 that helps alot
    malconi Guest

Posting Permissions

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

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139