Arrange three div tables in a row containing various images - the first and third tables showcase three pictures of identical sizes, while the second table displays a single image of a different size

Need help with image manipulation:

Check out these Images

I designed an item in fireworks but I'm having trouble making adjustments in dreamweaver. This is not a school assignment, just a personal project. The first image shows how it should look, while the second image depicts the issue I'm facing. I've spent hours attempting to resolve it, but seem to be stuck. Help!

CSS:

#header {
width:750px;
height:341px;
margin-left:25px;
display:block;
}
#tableleft {
clear: right;
float: left;
width: 128px;
margin-left:10px;
margin-right: 5px;
margin-top:10px;
 }
#tablecenter {
margin-left:165px;
clear: both;
float: left;
width: 410px;
margin-bottom:5px;
}
#tableright {
clear: left;
float: left;
width: 128px;
margin-left: 600px;
margin-right:10px;
margin-top:10px;
}

HTML:

<p align="center"><img src="images/SmWhitepic.jpg" alt="" width="118" height="87"     /></p>
    <p>&nbsp;</p>
    <p align="center"><img src="images/SmWhitepic.jpg" alt="" width="118" height="87" /></p>
    <p>&nbsp;</p>
    <p align="center"><img src="images/SmWhitepic.jpg" alt="" width="118" height="87" /></p>
  </div>
</div>

Answer №1

Please remove the clear attribute from all ID styles, as long as the widths of the divs meet the required criteria.

Similar questions

If you have not found the answer to your question or you are interested in this topic, then look at other similar questions below or use the search

Verify the user's login status on Facebook without using the Facebook application

Can PHP be used to verify if a user is logged into Facebook without requiring a Facebook application? Appreciate any insights. ...

Get rid of the dashed outline surrounding the selected button

One of my divs has a button inside that, when clicked, creates an outline around it. Here is what it looks like: https://i.sstatic.net/pEr53.png **Code: ** .slide-arrow { color: #fff; background-color: #9E9997; border: none; padding: 16px 10px ...

Identifying various device platforms through CSS styling

After extensive research and testing, I have explored a variety of resources and solutions for implementing device-specific CSS on my webpage. Here are some of the references I've studied: Detect iPhone/iPad purely by css Detect Xoom browser (Andro ...

Displaying form data in a single div using Javascript

My goal is to display form data within the same div after clicking on the submit button, but without including the form itself. However, in my current code, the hidden div does not appear after clicking on the submit button. Please review the code below th ...

Guide on creating a live connection between a slider and a canvas

Currently, I am working on implementing a slider that can dynamically adjust a specific value in the canvas, such as the radius of a circle. Although my code works as intended, I would like the canvas to update in real-time as I move the slider instead of ...

The hover effect is being disrupted by the links inside the list item

I'm working on styling an unordered list where each list element contains a frame, background, and an image. I've set it up so that when you hover over a list element, the background changes to orange and the text turns white. However, I ran into ...

The template seems to be holding out for the Observable to produce a single yield

Upon obtaining an array through a service, the template is used to create a list using *ngFor. The initial list functions correctly, however, there is a second list that utilizes a subset of the array and results in the following error: ERROR TypeError ...

Troubleshooting techniques for resolving CSS issues with the video.js package in ReactJS

When using video.js in react to build a video player, I encountered an issue with the npm package not providing its inbuilt CSS. How can I add the inbuilt CSS of video.js? Instead of the control bar, I am getting something different than what is shown in t ...

Tips for creating a popout feature for a YouTube player and getting the video to play

Currently, I am facing an issue with my YouTube player. Whenever I try to play a video using the YouTube API, it redirects to another page before starting playback. Is there a way to make the player pop out on the same page when a user clicks on an image, ...

I encountered an issue where the background image did not load properly, whether I used a local or

Check out this HTML snippet: <section> <div id="section1" class="container"> </div> </section> Below is the corresponding CSS code: #section1{ height: auto; margin-top: 0px; background-image: url('bg-1.j ...

Having trouble with Twitter Bootstrap Rails CSS not loading after cloning a project onto a new machine

Two machines are in question here. Machine1 is working perfectly fine, while Machine2 is a new setup. The operating systems on the two machines are different - Machine1 runs OSX 10.6 Snow Leopard and Machine2 runs OSX 10.8 Mountain Lion. I have uploaded my ...

Come see the media Rule on display (viewable on a mobile phone)!

Seeking a solution to the issue of making the "IN PC" item visible only on computer screens and not on mobile phones. This menu item continues to display on mobile devices, despite efforts to resolve the problem. Any insights on where the problem lies and ...

Using jQuery to update a specific item in a list

My current project involves developing an Image Gallery app. It uses <img> tags within li elements. The code snippet is as follows: var $slideR_wrap = $(".slideRoller_wrapper"); var $slidesRoller = $slideR_wrap.find(".slidesRoller"); var $slideR ...

react-webcam npm package for optimizing video size

In my React app, I'm utilizing the npm package react-webcam. The <Webcam /> component is enclosed within a div with a dimension of {width: 100vw, height 100vh} I aim for the video element to adjust to the parent div's size and cover 100% ...

Achieve consistent padding by using a Boostrap 4 Row inside a container-fluid with padding that matches a regular container

As I work on building a website with bootstrap 4, I've encountered a challenge. https://i.sstatic.net/eb59f.jpg%60 The layout includes a fluid container setup where the header and footer backgrounds need to extend all the way to the page edges. Ins ...

Incorporating a Layered Div onto a Presentation Slider

Over at , we have a slider featured on the homepage. I am attempting to place a div ABOVE the image but BELOW the text. Essentially, my goal is to add a semi-transparent white overlay to enhance the image on the slider while keeping the text visible for b ...

Organize your list with a single click using jQuery plunge

I am trying to organize a group of list items based on a specific date. Below is the code I have written for this task: Please review the code snippet provided below. $(document).on('change','#exampleSelect',function(){ var filt ...

Is there a way to eliminate a style from the final element of a list?

I have just completed a project that looks similar to this: I am wondering if there is a way to remove the line at the end of the last column? (it's within a PHP while loop) Here is the code snippet: <div style="border-bottom: 1px solid #cdc ...

Modify <style> following jQuery scripts

Upon loading a site, I utilized a jQuery script to capture the background color of the header. This action occurs when the page is loaded with the cue $(document).ready(function(global). My goal is to then insert this captured value into the background sty ...

Is there a way to customize padding and color in HTML table cells?

I am looking to style cell d with a full yellow background in my HTML code for Outlook display. How can I achieve this? To clarify, I am using agility HTML pack to make changes to the cell d at runtime while ensuring that the table remains well-formatted. ...