Help centering picture in a box using CSS

I have a picture as background in the layer.. but i'm trying
center the picture with box together whenever user resize or change
their display example, if user change from their display from 1024
x 768 to some wide screen display it is still center of the page
please help thanks

Use CSS to center it, e.g., background-position:center.
Please make sure you familiarize yourself with the use of CSS
before trying
this.
Murray --- ICQ 71997575
Adobe Community Expert
(If you *MUST* email me, don't LAUGH when you do so!)
==================
http://www.dreamweavermx-templates.com
- Template Triage!
http://www.projectseven.com/go
- DW FAQs, Tutorials & Resources
http://www.dwfaq.com - DW FAQs,
Tutorials & Resources
http://www.macromedia.com/support/search/
- Macromedia (MM) Technotes
==================
"fatjedi" <[email protected]> wrote in
message
news:f9658m$quu$[email protected]..
>I have a picture as background in the layer.. but i'm
trying center the
> picture with box together whenever user resize or change
their display
> example,
> if user change from their display from 1024 x 768 to
some wide screen
> display
> it is still center of the page
> please help thanks
>

Similar Messages

  • I need help Centering a div box to a background image using dreamweaver cs5.5.

    I need help Centering a div box to a background image using dreamweaver cs5.5. Everything shift left when viewing on different size monitors?  See what I mean at
    www.woodlandhospice.com

    Have you looked at your page with images disabled?
    I urge you to re-think this approach to web design because images of text are not indexed by search engines, screen readers or translators.  Given the demographic group your site is targeting, you really need to ensure maximum web accessibility for all users.
    Navigation, headings and descriptions all need to be in real text -- not images of text.
    Ken is right.  Absolute positioning is pure poison for such a simple layout.  My advice is to start over with one of the pre-built Starter Pages in DW.  Go to File > New > Blank page > HTML.  Select a layout from the 3rd column and hit CREATE button.
    Nancy O.

  • Hello, the 'Save As' dialog box used to allow the backspace button to go up one level in the directory when the focus is in the folder contents box but it does not work any more, please help.

    Hello, the 'Save As' dialog box used to allow the backspace button to go up one level in the directory when the focus is in the folder contents box but it does not work any more, please help. BTW the same 'Save As' dialog in other applications still allow the backspace button to go up one level in the directory.

    cor-el,
    I kept forgetting and procrastinating about following your instructions, since I have internet access only for limited amounts of time and usually I am busy with important tasks when I am.
    Out of the blue, the problem corrected itself (the Save As box started to open full screen, then shrunk down to a normal size and the edges can now be dragged to a custom size).
    Even the copy and paste problem in the filenaming area seems to have been less troublesome lately even though there have been no updates to Firefox in a few weeks.
    Even though I marked the solution as not helpful, the problem has in fact been resolved. I will save the solution instructions in case the issue returns.

  • Hi, using iphoto 6, i suddenly lost albums: they are still in the directory, but no pictures in some albums.Using finder, I can locate the pictures and even get preview. But impossible to import them. Anyone can help? thanks

    Hi, using iphoto 6, i suddenly lost albums: they are still in the directory, but no pictures in some albums.Using finder, I can locate the pictures and even get preview. But impossible to import them. Anyone can help? thanks

    Try these in order - from best option on down...
    1. Do you have an up-to-date back up? If so, try copy the library6.iphoto file from the back up to the iPhoto Library allowing it to overwrite the damaged file.
    2. Download <a href="http://www.fatcatsoftware.com/iplm/"><b><u>iPhoto Library Manager</b></u></a> and use its rebuild function. This will create a new library based on data in the albumdata.xml file. Not everything will be brought over - no slideshows, books or calendars, for instance - but it should get all your albums and keywords back.
    Because this process creates an entirely new library and leaves your old one untouched, it is non-destructive, and if you're not happy with the results you can simply return to your old one.
    3. If neither of these work then you'll need to create and populate a new library.
    To create and populate a new *iPhoto 6* library:
    Note this will give you a working library with the same Rolls and pictures as before, however, you will lose your albums, keywords, modified versions, books, calendars etc.
    Move the iPhoto Library to the desktop
    Launch iPhoto. It will ask if you wish to create a new Library. Say Yes.
    Go into the iPhoto Library on your desktop and find the Originals folder. From the Originals folder drag the individual Roll Folders to the iPhoto Window and it will recreate them in the new library.
    When you're sure all is well you can delete the iPhoto Library on your desktop.
    In the future, in addition to your usual back up routine, you might like to make a copy of the library6.iPhoto file whenever you have made changes to the library as protection against database corruption.

  • Centering Images using CSS but having links on the Images

    Hi all,
    I have a problem on centering an image using CSS. I read on many forums that you have to use margin-left , margin-right and set to auto. and also set the display:block which I had done.
    The problem is if I want to have a link from the image. Because I have set the display to block, the link will span the entire container containing it! How do I resolve that? I only want the image to be linkable and not the entire container!
    Thanks for reading!

    Murray *ACP* wrote:
    Because I have set the display to block, the link will span the entire container containing it!
    That's incorrect.  If the display:block is applied to only the IMAGE, the anchor tag will be exactly the same dimensions as the image and will not fill the container.
    Hi Murray,
    Weirdly it does in my experiments. (code below). Even if I set the 'a' tag to the width of the image it still makes the whole <div> container clickable:
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    <html xmlns="http://www.w3.org/1999/xhtml">
    <head>
    <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
    <title>Untitled Document</title>
    <style type="text/css">
    #imgWrapper {
        width: 900px;
        margin: 0 auto;
        border: 1px solid #000;
    #imgWrapper img {
        margin: 0 auto;
        display: block;
    </style>
    </head>
    <body>
    <div id="imgWrapper">
    <a href="http://www.bbc.co.uk"><img src="slice_2.jpg" width="595" height="130" /></a></div>
    </body>
    </html>

  • Help centering a box in a jpanel

    hi every1,
    I need some help centering a box in a jpanel both
    horizontally and vertically.
    which layout is the correct one?
    could you post a scrap of code please?
    thanxalot
    stefano

    With the GridBagLayout you basically can do everything. Are there more components in the panel or just this box. If it's just the box, change the Layout of the panel to GridBagLayout and the anchor of the box to center. That should beeverything to do.
    Cheers
    Jonas

  • Firefox will not let me use the mouse to click on a product so i am having to use the tab key. Please help me to be able to use my mouse to click the box.

    Firefox will not let me use the mouse to click on a product so i am having to use the tab key. Please help me to be able to use my mouse to click the box.

    Start Firefox in <u>[[Safe Mode|Safe Mode]]</u> to check if one of the extensions (Firefox/Tools > Add-ons > Extensions) or if hardware acceleration is causing the problem (switch to the DEFAULT theme: Firefox/Tools > Add-ons > Appearance).
    *Do not click the Reset button on the Safe mode start window or otherwise make changes.
    *https://support.mozilla.org/kb/Safe+Mode
    *https://support.mozilla.org/kb/Troubleshooting+extensions+and+themes

  • I purchased a 3TB Airport Time Capsule After 8 hours been able to configure the box using Ethernet connection but now I want to move my current backups and it wants authentication but no box is available to provide my administrator name can anyone help ?

    I purchased a 3TB Airport Time Capsule to use with my Mac running latest Maverics. After 8 hours been able to configure the box using Ethernet connection but now I want to move my current backups from my small driveand it wants authentication but no box is available to provide my administrator name can anyone help ?

    I overcame the permissions by allowing both paths to have read and write access to anyone but that didnt solve it until I copied it into the DATA directory which I created on the Airport Time Capsule.
    I had already discovered the TIME MACHINE How to transfer backups but I am struggling still with the item and cannot currently get it to work. My setup seems to have created a wireless link to my router which is what I wanted and in that set up there are three options. I have simply gone for the extension of my network. I ignored the other option there which I cannot remember something like DNS? That may be the problem becasuse when I remove the Ethernet connector it just doesnt go anywhere.
    I have also found I cannot update my TIME MACHINE software (currently 1.3) as although Apple tell me I should be able to set backups hourly daily or weekly I have only ever been able to run it hourly when i would prefer longer intervals so thought an update might be necssary.
    Also tried to get an update for my Airport Utility (Currently 6.3.2 but cannot find one even though I have read there might be one available and again this might be the problem.
    Have reset the Time Capsule now about a dozen times.
    Following the instructions and trying to copy my existing backup it suggests you need to copy it to the root directory but that is when I get some sort of security issue and I found I could only get it to accept if I dragged my .backupdb to the DATA directory on the Time Capsule. I dont even know if I do this it will work when I come to use it.
    I therefore found your reply of no more help than i had discovered but I hope you return to read this note because I really do need some help.
    I am intending starting again in the next couple of days and fully documenting what I do and what I see and then as I suspect it will be no different and I will then seek an appointment at the Apple Store in Trafford Centre and if that proves unsuccessful then I still have time to return and become a dissatisfied customer with Apple for the first time in a long experience with Apple. I have noticed frightening notes on the conversations which point to problems of Mavericks working with Airport Time Machine!! So in the end it might not be me doing anything wrong. Unfortunately you do feel left out in the dark sometimes that is why I hope you can respond with a solution?

  • HT201365 i forget my icloud  and my iphone5 i cant use it can u help me i have my box and buying bill

    i forget my icloud  and my iphone5 i cant use it can u help me i have my box and buying bil

    Unfortunately, unless you know the Apple ID, there is absolutely nothing that can be done, you cannot use your mobile device. You may be able to find your Apple ID at Look up your old and forgotten Apple ID

  • Help needed using CSS positioning for movie/text

    I have been deconstructing a few sites to get a better
    understanding of CSS for a simple portfolio.
    Anyway, I have a simple navigation set up in place which I
    want to place my movie next to. The problem is that I can't work
    out how to place it next to the buttons...
    The url to the site is:
    http://www.notjustthenews.co.uk/page8.html
    Once I've done that I want to place a paragraph of text to
    the right of the movie so that if you resize the browser window the
    text wraps around the movie.
    Any help would be most appreciated.
    The CSS is question is:
    #wrapper{
    float:right;
    width: 75%;
    margin: 0;
    padding: 0 3% 0 0;
    #widescreen {
    float: left;
    padding: 0px 10px 0px 0px;
    margin: 0 5px 5px 0;

    Not sure what the web forum and the news forum does with code
    these days
    but here is the complete coding/css that you need. (That's if
    it
    transfer ok)
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0
    Transitional//EN"
    http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"><html
    xmlns="
    http://www.w3.org/1999/xhtml"><head>
    <meta http-equiv="Content-Type" content="text/html;
    charset=iso-8859-1"><title>notjustthenews.co.uk</title>
    <style type="text/css">
    body{
    font-family: Arial,sans-serif;
    color: #000000;
    line-height: 1.166;
    margin: 0px;
    padding: 0px;
    h1 {
    font-family: Verdana, Arial, sans-serif;
    font-size: 120%;
    color: #000000;
    h3{
    font-size: 100%;
    color: #334d55;
    p {
    font-family: Arial, sans-serif;
    font-size: 14px;
    color: #000000;
    label{
    font: bold 100% Arial,sans-serif;
    color: #334d55;
    ul{
    list-style-type: square;
    #top{
    border-bottom: 1px solid #cccccc;
    width: 100%;
    padding-top: 10px;
    padding-right: 0px;
    padding-bottom: 10px;
    padding-left: 0px;
    #topmenu{
    color: #cccccc;
    padding: 0px 0px 0px 10px;
    white-space: nowrap;
    #topmenu a {
    font-size: 90%;
    padding: 0px 4px 0px 0px;
    #title{
    padding: 0px 0px 10px 10px;
    #topmenu ul {
    font-family: Arial, sans-serif;
    font-size: 14px;
    #topmenu li {
    margin-bottom: 5px;
    #topmenu a:link, #topmenu a:visited {
    text-decoration: none;
    color: #000000;
    #topmenu a:hover {
    color: #990000;
    text-decoration: none;
    #seltopmenu a:link, #seltopmenu a:visited, #seltopmenu
    a:hover {
    color: #990000;
    text-decoration: none;
    #navBar ul a:link, #navBar ul a:visited {display:
    block;<br />
    #navBar ul {list-style: none; margin: 0; padding: 0;
    #navBar li {border-bottom: 1px solid #EEE;
    html>body #navBar li {border-bottom: none;
    #navBar{
    float: left;
    width: 200px;
    background-color: #eeeeee;
    border-right: 1px solid #ccc;
    border-bottom: 1px solid #ccc;
    #search{
    padding: 5px 0px 5px 10px;
    border-bottom: 1px solid #cccccc;
    font-size: 90%;
    #search form{
    margin: 0px;
    padding: 0px;
    #search label{
    display: block;
    margin: 0px;
    padding: 0px;
    #projectLinks{
    border-bottom: 1px solid #cccccc;
    font-size: 90%;
    #projectLinks h3{
    padding: 10px 0px 2px 10px;
    #projectLinks a:link{
    text-decoration: none;
    color: #000000;
    padding: 2px 0px 2px 10px;
    border-top: 1px solid #cccccc;
    width: 100%;
    voice-family: "\"}\"";
    voice-family:inherit;
    width: auto;
    #projectLinks a:visited{
    text-decoration: none;
    color: #000000;
    border-top: 1px solid #cccccc;
    padding: 2px 0px 2px 10px;
    #projectLinks a:hover{
    color: #990000;
    text-decoration: none;
    border-top: 1px solid #cccccc;
    background-color: #dddddd;
    padding: 2px 0px 2px 10px;
    #selprojectLinks a:link, #selprojectLinks a:visited,
    #selprojectLinks
    a:hover {
    color: #990000;
    text-decoration: none;
    #widescreen {
    padding: 0px 10px 0px 0px;
    margin: 0 5px 5px 210px;
    #widescreen object {
    float: left;
    margin-right: 10px;
    #widescreen p {
    margin-top: 0;
    </style></head>
    <body>
    <div id="top">
    <h1 id="title">notjustthenews.co.uk</h1>
    <div id="topmenu"> <a href="#">home</a> |
    <a href="#">movies</a> | <a
    href="#">audio</a> | <a
    href="#">websites</a> | <a
    href="#">reviews</a>
    | <a href="#">other stuff</a> | <a
    href="#">contact</a>
    </div>
    </div>
    <div id="navBar">
    <div id="search">
    <form action="#">
    <label>search</label>
    <input name="searchFor" type="text" size="10">
    <input name="goButton" type="submit" value="go">
    </form>
    </div>
    <div id="projectLinks">
    <ul>
    <li><a href="#">project1</a></li>
    <li><a href="#">project2</a></li>
    <li><a href="#">project3</a></li>
    <li><a href="#">project4</a></li>
    <li><a href="#">project5</a></li>
    <li><a href="#">project6</a></li>
    </ul>
    </div>
    </div>
    <div id="widescreen">
    <object
    classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000"
    codebase="
    http://fpdownload.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=7,0,0,0"
    name="defences" width="402" height="240" align="middle"
    id="full screen">
    <param name="allowScriptAccess" value="sameDomain">
    <param name="movie" value="movieplayer.swf">
    <param name="quality" value="high">
    <param name="salign" value="tl">
    <param name="bgcolor" value="#000000">
    <param name="FlashVars" value="vidpath=defences.flv">
    <embed src="page8_files/movieplayer.swf"
    flashvars="vidpath=defences.flv" quality="high" salign="tl"
    bgcolor="#000000" width="402" height="240" name="defences"
    align="center" allowscriptaccess="sameDomain"
    type="application/x-shockwave-flash"
    pluginspage="
    http://www.macromedia.com/go/getflashplayer">
    </object>
    <p>This is some filler text. This is some filler text.
    This is some
    filler text.</p>
    <p>This is some filler text. This is some filler text.
    This is some
    filler text.</p>
    <p>This is some filler text. This is some filler text.
    This is some
    filler text.</p>
    <p>This is some filler text. This is some filler text.
    This is some
    filler text. This is some filler text. This is some filler
    text. This is
    some filler text.</p>
    <p>This is some filler text. This is some filler text.
    This is some
    filler text. This is some filler text. This is some filler
    text. This is
    some filler text.</p>
    <p>This is some filler text. This is some filler text.
    This is some
    filler text. This is some filler text. This is some filler
    text. This is
    some filler text.</p>
    <p>This is some filler text. This is some filler text.
    This is some
    filler text. This is some filler text. This is some filler
    text. This is
    some filler text.</p>
    </div>
    </body>
    </html>

  • How do I scale a lot of images using CSS in HTML5 and CSS3

    I have a CSS image gallery that displays a larger photo with descriptive text below it, when a thumbnail image is hovered on.
    Each photo has code like that following:
    <a class="thumbnail" >
    <img src="thumbs1/paradethumbs/DSC_0073.jpg" alt="thumbnail picture" />
    <span><img src="pics1/paradepics/DSC_0073.jpg" alt=" " /><br /> 19 - a black faced sheep.</span>
    </a>
    The first source is a thumbnail,  image stored at a size of 72 by 48.
    The second source is an image stored at 600 x 400.
    When the thunbnail is hovered on, the larger photo is displayed at its full size using css.
    There are 20 or so thumbnails in this gallery, and different numbers in other galleries that use the same code.
    The example above is number 19 from 20.
    This works fine on tablets and larger displays.
    When I wish to show it on an Iphone or similar, with a display that is 480 or less wide, I need to scale the larger photo down to 300 wide.
    As the Iphone will have a lower quality of image than a larger display, it will not matter too much if the 600x400 photo is scaled down, and having tried it by giving it an ID with CSS like
    #imagescale{ width:300px; } it looks acceptable. However, as IDs are supposed to be unique, then thats a no go area for the remaining photos.
    My problem is how do I select the second image source shown in bold above, and scale it and the span text by 50%.
    The text is not too important as it can be changed to fit - the image is the main problem.
    I need someting like "if the display is less than 600 and the image is in the pics directory, display it at 300 wide".
    The browser will hopefully  take care of the height.
    Any suggestiosn would be appreciated.
    Howard Walker

    Thanks Nancy. The general idea and the link to the article helped a lot.
    However, the css using using a percentage had unpredictable results when selecting repeated images.
    The first one scales to 50% and then the next scales to 50% of the last one (25%)  and so on ad infinitum, unless you click on another object that is not an image.
    Using a pixel size like 280px rather than a percentage did the trick, but it also involved changing lots of other items before I could get everything to fit.
    Now I have a better knowledge of media queries and how to set them up.
    Best of all, all my image galleries work fine just using css and html. Never thought that would happen.
    Take five stars!
    And the same to David Powers for his great article.
    Howard Walker

  • Using CSS with Contribute

    I just stumbled upon a small hitch in my get-along.
    While trying to assign an alignment class in Contribute (that
    I had originally created in Dreamweaver) I discovered that I
    couldn't figure out how to accomplish this. I have already created
    a class and it's in the external style sheet, but I can't figure
    out how to associate the picture with the class so that text will
    flow around the image.
    help!
    thanks,
    Ron

    Thanks for the input.  I'm well aware of how to use CSS.  The focus of this discussion was really how to get images out of <p> tags, not how to write a bunch of extra CSS to undo what Contribute really shouldn't be doing to images.
    I am committed to use CSS on my site, but I am also committed to making that CSS easy to use, which mean working at tag and block levels as much as I can, rather than becoming "class happy".  I know I have to use classes to do the left and right alignment, but let me share a specific scenario where CSS shouldn't be used.
    I have an <h2> element that is the full width of my container.  Below that, I have a <p> element for my paragraph.  For my design, I want the paragraph to have 1em of padding.  Now, I want an image banner that is the full width of the container, so it can nest under the <h2> and be the same width.  If I insert the image in Contribute above the <p>, it puts that in a <p> tag.  Now, the image is too wide because it's trying to add padding around something that is already the full width of the page.  I can't add a rule to remove the padding from all images, because that would remove padding from images that need it also.
    I could write a custom CSS class to resolve this issue, but that takes time, adds to my CSS file size and gums up my dropdown menu with an unnecessary class that's only used to solve this one scenario.  Instead, it makes more sense to just break the image out of the paragraph tag and treat it as a block.
    This is an example of what I was trying to get Contribute to do.  I just needed the image tag as such, an image, not an image inside my paragraph padding rules.
    In this case "remove paragraph breaks" is the most logical choice, rather than writing a bunch of CSS to undo Contribute's quirks.

  • 3D picture Draw shaded boxes - FAST!

    Hi,
    I would like to draw shaded boxes, like 'Scene.Drawable.Geometry.New Box'. But I want to draw some 100.000 boxes or more. If I use this function, I have to join the boxes using the Object.Add Object' invoke node. Repeating this for 100.000 times takes a long time, costs a lot of memory, and results in a slow display.
    As an alternative, I created a box primitive, built from 6 quads. I can create an array holding the vertices of 100.000 cubes, and display them like a mesh. The creation is fast, and also is the display. But: the shading of the boxes differs from the shading that results from the first method. See example code.
    I tried a whole lot of different lighting and shading settings, but I cannot get it right. Is it possible to draw a box using a mesh that looks exactly the same as the box using the new.box method?
    In the example code, I would like to have the red box to have the same sort of shading as the green box.
    Any help is appreciated.
    Attachments:
    3D Picture Draw.vi ‏23 KB

    Well you will have an X, a Y and a Z normal depending on the face of the cube and also positive or negative depending on the side of the cube.
    Try {1,0,0}, {0,1,0}, {0,0,1}, {-1,0,0}, {0,-1,0}, {0,0,-1} although I don't know in which order (Depends ont he order of declaration of the "sides".
    I think you may have to declare the normal mode to "Per Primitive" for this to work.
    PS here are the normals I got working with your example
    Say hello to my little friend.
    RFC 2323 FHE-Compliant

  • Viewing layers - using css

    Hi
    I have just started to use css. When I publish the html page
    which uses the css everything looks great but when I try and view
    the page in deign view I can only see 1 layer - the footer. The
    "prevent overlap box" in the layer panel is not checked and all
    layers are "Visable" and all have the "Eye icon" next to them. I
    have a horrible feeling that I'm being thick!!. I'm using
    dreamweaver MX V6. Can someone PLEASE tell me what I need to do,
    learning css is hard enough and I'm afraid my brain is going to
    explode if I can't sort this out.
    Thanks to anyone taking the time to read this
    Welsh Babe
    If it's any help you can see the page by going to
    http://www.kingsandqueenswales.com/layout.html

    >It can get very confusing for people just staring out.
    Oh boy, ain't dat de troof!
    Jo
    "Osgood" <[email protected]> wrote in
    message
    news:[email protected]...
    > Welsh Babe wrote:
    >
    >> Hi
    >> I have just started to use css. When I publish the
    html page which uses
    >> the css everything looks great but when I try and
    view the page in deign
    >> view I can only see 1 layer - the footer. The
    "prevent overlap box" in
    >> the layer panel is not checked and all layers are
    "Visable" and all have
    >> the "Eye icon" next to them. I have a horrible
    feeling that I'm being
    >> thick!!. I'm using dreamweaver MX V6. Can someone
    PLEASE tell me what I
    >> need to do, learning css is hard enough and I'm
    afraid my brain is going
    >> to explode if I can't sort this out. Thanks to
    anyone taking the time to
    >> read this
    >> Welsh Babe
    >> If it's any help you can see the page by going to
    >>
    http://www.kingsandqueenswales.com/layout.html
    >>
    >
    > I can see all of your layers in v7 of DW design view.
    >
    > However I'm afraid I have bad news. You are not going
    about using css to
    > position your elements in the correct way.
    >
    > Laying out a page using layers, which are absolutely
    positioned, is only
    > going to get you deeper and deeper into trouble.
    >
    > If you are wanting to leap from a table design to an all
    css design then
    > the learning curve is going to be steep and has little,
    or nothing to do
    > with using layers.
    >
    > A good all css design uses <div> containers not
    layers. Although they
    > appear to be the same they are not. It can get very
    confusing for people
    > just staring out.
    >
    > A layer is an absolutely positioned container to which
    you give a top and
    > a left position. IT WILL NOT MOVE FROM THIS POSITION.
    This is usually not
    > desirable. Test out your current construction by using
    the zoom text tool
    > available in most modern browsers. See how quickly the
    page breaks down as
    > the layers being to overlap one another.
    >
    > A <div> container is mearly a box into which you
    load content. You can
    > then give it a position on the page by using margin or
    you can float
    > <divs> to put them side by side.
    >
    > If you know how to use tables then I would strongly
    recomend you stay with
    > them until you know how to position correctly using css.
    You can still use
    > css to style tables, there is nothing wrong with using
    simple tables.
    >
    > If you want to study how to use css correctly for
    positioning take some
    > time out and read through a couple of tutorials:
    >
    >
    >
    http://www.projectseven.com/tutorials/css/qdmacfly/index.htm
    >
    >
    > Tutorial 8 and 9 here
    >
    >
    http://css.maxdesign.com.au/floatutorial/
    >
    >
    >
    >
    >
    >

  • More than one TV with Vision box using house ring ...

    I wonder if anyone can help
    I have a BTvision box which is connected to one TV using HDMI and want to be able to watch the BTvision output on a different TV from time to time.
    I have tried streaming to another room using a sender but the signal breaks up/ is lost in the wall density.
    Following advice from BT Vision operator I have purchased a Powerline Netricity 85M twin pack adapter to link the proposed system via the ring main but the connection cables supplied are Ethernet. The only connection on these units is for Ethernet.
    The BTvision box has an available USB port. The Hitachi Plasma TV to which I wish to stream the BTvision has an available Scart terminal and HDMI terminal.
    Will the system work if I connect the BTvision box to the Powerline Netricity adapter using a USB to Ethernet cable (item 1) and the Hitachi TV to the second Powerline Netricity adapter using an Ethernet to Scart cable (item 2) or Ethernet to HDMI cable (item 3)?
    If so who can you supply the items 1 and 2, or items 1 and 3 as appropriate?
    Or does anyone know of a different way to connect up the system?

    sgbuckingham wrote:
    Yes I live in digital only area.
    So for the avoidance of doubt I need
    1. to buy a universal modulator
    2. connect scart output from BLACK BTVision box to the modulator
    3. connect aerial output from BLACK BTVision box to the modulator
    4. connect, using coaxial cable, the modulator to a splitter (receiving both BT Vision output via modulator and digital coaxial aerial input)*
    The modulator will pass all signals so there is no need for a splitter, it has an loop through connection.
    see http://www.maplin.co.uk/programmable-universal-modulator-33050
    5. connect splitter to the second TV coaxial aerial input socket using coaxial cable*
    *If 4 and 5 not possible would I have to connect using SCART - and if so -  i presume I could just hardwire by SCART direct from Black BTVision box to second TV using 15m SCART cable negating need for a modulator?
    15m of SCART is probably going to be better than using a modulator, which will degrade the signal a bit, as it will have to go via the analogue part of the TV, however I have never tried a SCART lead that long.
    There are some useful help pages here, for BT Broadband customers only, on my personal website.
    BT Broadband customers - help with broadband, WiFi, networking, e-mail and phones.

Maybe you are looking for

  • Notification: "The report deployment process in in progress"

    Hi All, We're implementing Service manager and we have an issue with the reporting management packs. Upon opening the Service manager console we're getting the error: "The report deployment process in in progress. To determine when management pack de

  • Photoshop CC Not Seeing All of System Ram

    I have a Windows 7 -64 bit Professional system with 24 gb of ram.  Photoshop CS 5 and 6 had no problem seeing that much ram, but Photoshop CC only shows a little less than 4 gb.

  • Detecting launcher (java.exe vs javaw.exe)?

    I found myself wondering this morning if one could and how if one could one would detect if the launcher of a particular main(...) were java.exe or javaw.exe programatically. Or by extension could one detect if Swing interfaces were supported. Consid

  • Problem with one-to-one relationship

    Two tables INTERPRETER_IMAGE AND INTERPRETER_DATA are related to one table INTERPRETER. If a entity bean Interpreter with new entities Interpreter_image and Interpreter_data in a persist() method call, it should automatically be wired between entitie

  • SPML Web Services

    We have a oracle identity manager 11 g installation. OIM_HOME/setup/spml_AppServerName.sh appserver_admin_password oim_db_user_password I am not able to find OIM_HOME/setup infact I am able to find OIM_HOME/server/setup but no any file with spml_ exi