Copy link to clipboard
Copied
Hello
I have read a number of similar questions but none seem to address my issue.
I cannot seem to move a div titled "rightside" to go there. I have used float:right but this does not work.
Another issue is that I have 3 small images with text that I want beneath a banner but again I cannot seem to position these either.
I am using an iMac with 32GB RAM and dreamweaver CS5.
Can anyone please help me with this?
HTML
<head> <meta name="robots" content="INDEX,FOLLOW"/>
<meta name="robots" content="noimageindex"/>
<meta charset="UTF-8">
<meta name="description" content="Ultimate Trumps - the most intelligent and educational brand of Trumps also known as Top Trumps. Play, learn and have fun discovering the real world with real facts!">
<meta name="keywords" content="Top Trumps, Australia, Belgium, Brazil, Canada, Czechoslovakia, Denmark, England, Finland, France, German, Greece, Hungary, Iceland, Indiay, Italy, Malta, Norway, Scotland, South Africa, Spain, Sweden, Switzerland, Netherlands, Turkey, USA">
<title> Ultimate Trumps | The home of intelligent and factual Trumps</title>
<link href="css/styles.css" rel="stylesheet" type="text/css" media="screen">
</head>
<body>
<div id="wrapper">
<div id="logo-image">
<h1><img src="images/Logo.png" alt="Ultimate Top Trumps Reference Banner" ></h1>
</div>
<div id="social">
<p>Get more info about Trumps!</p>
<ul>
<li><a title="See Top Trumps images on Fickr" href="https://www.flickr.com/photos/95195765@N02/"><img alt="Ultimate Top Trumps Flickr" src="images/Flickr.png"></a></li>
<li><a title="See what Ultimate Top Trumps says on Facebook" href="https://www.facebook.com/ultimatetrumps1/?ref=aymt_homepage_panel"><img alt="Ultimate Top Trumps Facebook" src="images/Facebook.png"></a></li>
<li><a title="See what Ultimate Trumps is tweeting about" href="https://twitter.com/UTTNigel"><img alt="Ultimate Top Trumps Twitter" src="images/Twitter.png"></a></li>
<li><a title="See some Ultimate Top Trumps videos on Youtube" href="https://www.youtube.com/channel/UCSzaAPT0h8Ot6aV6op4cTOQ"><img alt="Ultimate Top Trumps Youtube" src="images/Youtube.png"></a></li>
<li><a title="See what pictures we're taking" href="https://www.instagram.com/ultimatetrumps"><img alt="Instagram" src="images/instagram.png"></a></li>
</ul>
</div><!--Social end-->
<div id="nav">
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="packs.html">Packs</a></li>
<li><a href="history.html">History</a></li>
<li><a href="https://store5205056.ecwid.com/#!/Ultimate-Trumps/c/10277038/offset=0&sort=nameAsc">Shop</a></li>
<li><a href="aboutus.html">About</a></li>
<li><a href="contact.html">Contact</a></li>
</ul> </div><!--nav end-->
<div id="banner">
<img alt="Banner" src="images/banner1.png">
</div>
<div id="content">
<h1>Welcome to Ultimate Trumps</h1>
<p>Ultimate Trumps is a game of many benefits ranging from just a basic Trump game to a world of learning! Everyone will be able to learn something new even without playing the game. Real topics with real facts is what Ultimate Trumps prides its self upon.</p>
<h2>More than just a game</h2>
</div>
<div id="box1">
<img alt="image1" src="images/wpa3bc34d7_05_06.jpg">
<h2>Fun for all the Family</h2>
<p>Ultimate Trumps is a game that the whole family can enjoy and learn something new from. With educational and intellgent topics even the smartest family member will discover a new fact. Ultimate Trumps is a game that is fun regardless of age. When immersed in a game of Trumps age does not matter! Try testing each other with statistics and see who has the best memory!</p>
</div>
<div id="box2">
<img alt="image2" src="images/wp42622aef_05_06.jpg">
<h2>An Educational Tool</h2>
<p>Ultimate Trumps can easily be used alongside the school curriculum or to help with a school project. Ultimate Trumps is an intelligent and fun way to remember information so you can dazzle your teachers or friends with a mountain of facts.</p>
</div>
<div id="box3">
<img alt="image3" src="images/boy-playing-planes.jpg">
<h2>Play and Learn</h2>
<p>We all know that when we play a game we learn something new. Sometimes the thing that we learn has little meaning but with Trumps from Ultimate Trumps, what you learn can help you succeed at school. Educational and factual topics mean that what you learn has a meaning and may aid you in exams and even quizzes!</p>
</div>
<div id="rightside">
<h2>Sign up to our Newsletter and keep up to date with all things Trumps!</h2>
<a href="http://ultimate-top-trumps.us7.list-manage.com/subscribe?u=037e49f40af672f44d3468969&id=72f8a02434"><img alt="envelope" src="images/letter-clipart-letter.gif"></a>
<a href="http://www.ultimate-top-trumps.co.uk"> <img alt="utt logo" src="images/uttTitle.png"></a>
<h2>Ultimate Top Trumps</h2>
<p>Ultimate Top Trumps is your one stop for all things Trump related. The biggest site of its kind on the web, Ultimate Trumps has to be your first port of call for all collectors and fans.<br>Ultimate Trumps also buys collections so if your thinking of selling then get in contact with the team and see how they can help you.</p></div>
</script>
<div id="footer">
Copyright © 2009 - 2017 • Ultimate Top Trumps • All rights reserved
</div>
</div>
</body>
</html>
CSS
/*selector { property:value }*/
* { padding:0; margin:0; border:0;
font-size:12px; font-weight:normal; }
body { background-color:#66F; }
#wrapper { width:900px;
margin:5px auto;
padding:5px;
border:#FFF 1px solid;
background-color:#6FF; }
#banner { margin:1px;
padding:5px 40px;}
#logo-image { float:left;
padding:10px 0 0 30px;}
img { padding:5px; }
h1 { font-family:"Comic Sans MS", cursive;
font-size:24px;
text-align:center;
padding:10px; }
h2 { font-family:"Comic Sans MS", cursive;
font-size:18px;
padding:10px; }
p { font-family:"Comic Sans MS", cursive;
font-size:14px;
text-align:justify;
margin:5px 10px 5px 10px; }
ul li { display:inline;
list-style-type:none; }
a { font-family:"Comic Sans MS", cursive;
font-size:14px;
padding:0 24px 0 24px;
text-decoration:none; }
a:link { color:#000; }
a:visited { color:#03F }
a:active { color:#FF3; }
a:hover { color:#F00; }
a:focus { color:#F00; }
#nav {clear:both;
padding:0 0 15px 0; }
#nav { width:600px;
border-top:#FFF 1px solid;
padding:5px; }
#social { float:right;
padding:30px 0 0 10px;}
#social a { padding:1px;
text-decoration:none;
list-style-type:none; }
#social p { text-align:center;
padding: 0 0 10px 0; }
#content-wrapper {width:900px; }
#content { float:left;
width:620px; }
#content h2 {text-align:center;
padding:0 0 10px 0; }
#box1 { width:200px;
text-align:center; }
#box2 { width:200px;
text-align:center; }
#box3 { width:200px;
text-align:center; }
#rightside { float:right;
width:250px;}
#footer { padding:10px 0 10px 15px;
font-family:"Comic Sans MS", cursive;
width:400px; }
Thank you in advance!
If you're looking to move it to the right of the "Welcome to Ultimate Trumps" title line. You'll need to move the <div id="rightside">...</div> higher up in your html, to just after the <div id="content">...</div>.
The code should look like this...
<div id="content">
<h1>Welcome to Ultimate Trumps</h1>
<p>Ultimate Trumps is a game of many benefits ranging from just a basic Trump game to a world of learning! Everyone will be able to learn something new even without playing the game. Real top
...Copy link to clipboard
Copied
If you're looking to move it to the right of the "Welcome to Ultimate Trumps" title line. You'll need to move the <div id="rightside">...</div> higher up in your html, to just after the <div id="content">...</div>.
The code should look like this...
<div id="content">
<h1>Welcome to Ultimate Trumps</h1>
<p>Ultimate Trumps is a game of many benefits ranging from just a basic Trump game to a world of learning! Everyone will be able to learn something new even without playing the game. Real topics with real facts is what Ultimate Trumps prides its self upon.</p>
<h2>More than just a game</h2>
</div>
<div id="rightside">
<h2>Sign up to our Newsletter and keep up to date with all things Trumps!</h2>
<a href="http://ultimate-top-trumps.us7.list-manage.com/subscribe?u=037e49f40af672f44d3468969&id=72 f8a02434"><img alt="envelope" src="images/letter-clipart-letter.gif"></a> <a href="http://www.ultimate-top-trumps.co.uk"> <img alt="utt logo" src="images/uttTitle.png"></a>
<h2>Ultimate Top Trumps</h2>
<p>Ultimate Top Trumps is your one stop for all things Trump related. The biggest site of its kind on the web, Ultimate Trumps has to be your first port of call for all collectors and fans.<br>
Ultimate Trumps also buys collections so if your thinking of selling then get in contact with the team and see how they can help you.</p>
</div>
Copy link to clipboard
Copied
Is this the layout you are aiming for?:
<!DOCTYPE html>
<html>
<head>
<meta name="robots" content="INDEX,FOLLOW"/>
<meta name="robots" content="noimageindex"/>
<meta charset="UTF-8">
<meta name="description" content="Ultimate Trumps - the most intelligent and educational brand of Trumps also known as Top Trumps. Play, learn and have fun discovering the real world with real facts!">
<meta name="keywords" content="Top Trumps, Australia, Belgium, Brazil, Canada, Czechoslovakia, Denmark, England, Finland, France, German, Greece, Hungary, Iceland, Indiay, Italy, Malta, Norway, Scotland, South Africa, Spain, Sweden, Switzerland, Netherlands, Turkey, USA">
<title> Ultimate Trumps | The home of intelligent and factual Trumps</title>
<link href="css/styles.css" rel="stylesheet" type="text/css" media="screen">
<style>
* {
padding:0;
margin:0; border:0;
font-size:12px;
font-weight:normal;
}
body {
background-color:#66F;
}
#wrapper {
width:900px;
margin:5px auto;
padding:5px;
border:#FFF 1px solid;
background-color:#6FF;
background-color: yellow;
overflow: hidden;
}
#banner {
margin:1px;
padding:5px 40px;
}
#logo-image {
float:left;
padding:10px 0 0 30px;
}
img {
padding:5px;
}
h1 {
font-family:"Comic Sans MS", cursive;
font-size:24px;
text-align:center;
padding:10px; }
h2 {
font-family:"Comic Sans MS", cursive;
font-size:18px;
padding:10px; }
p {
font-family:"Comic Sans MS", cursive;
font-size:14px;
text-align:justify;
margin:5px 10px 5px 10px; }
ul li {
display:inline;
list-style-type:none;
}
a {
font-family:"Comic Sans MS", cursive;
font-size:14px;
padding:0 24px 0 24px;
text-decoration:none;
}
a:link {
color:#000;
}
a:visited {
color:#03F
}
a:active {
color:#FF3;
}
a:hover {
color:#F00;
}
a:focus {
color:#F00;
}
#nav {
clear:both;
padding:0 0 15px 0;
}
#nav {
width:600px;
border-top:#FFF 1px solid;
padding:5px;
}
#social {
float:right;
padding:30px 0 0 10px;
}
#social a {
padding:1px;
text-decoration:none;
list-style-type:none;
}
#social p {
text-align:center;
padding: 0 0 10px 0;
}
#content-wrapper {
width:900px;
}
#content {
float:left;
width:620px;
}
#content h2 {
text-align:center;
padding:0 0 10px 0;
}
#rightside {
float:right;
width:250px;
}
#footer {
padding:10px 0 10px 15px;
font-family:"Comic Sans MS", cursive;
width:400px;
}
#box_wrapper {
overflow: hidden;
}
#box1, #box2, #box3 {
float: left;
width: 33%;
}
</style>
</head>
<body>
<div id="wrapper">
<div id="logo-image">
<h1><img src="images/Logo.png" alt="Ultimate Top Trumps Reference Banner" ></h1>
</div>
<!-- end logo-image -->
<div id="social">
<p>Get more info about Trumps!</p>
<ul>
<li><a title="See Top Trumps images on Fickr" href="https://www.flickr.com/photos/95195765@N02/"><img alt="Ultimate Top Trumps Flickr" src="images/Flickr.png"></a></li>
<li><a title="See what Ultimate Top Trumps says on Facebook" href="https://www.facebook.com/ultimatetrumps1/?ref=aymt_homepage_panel"><img alt="Ultimate Top Trumps Facebook" src="images/Facebook.png"></a></li>
<li><a title="See what Ultimate Trumps is tweeting about" href="https://twitter.com/UTTNigel"><img alt="Ultimate Top Trumps Twitter" src="images/Twitter.png"></a></li>
<li><a title="See some Ultimate Top Trumps videos on Youtube" href="https://www.youtube.com/channel/UCSzaAPT0h8Ot6aV6op4cTOQ"><img alt="Ultimate Top Trumps Youtube" src="images/Youtube.png"></a></li>
<li><a title="See what pictures we're taking" href="https://www.instagram.com/ultimatetrumps"><img alt="Instagram" src="images/instagram.png"></a></li>
</ul>
</div>
<!--end social-->
<div id="nav">
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="packs.html">Packs</a></li>
<li><a href="history.html">History</a></li>
<li><a href="https://store5205056.ecwid.com/#!/Ultimate-Trumps/c/10277038/offset=0&sort=nameAsc">Shop</a></li>
<li><a href="aboutus.html">About</a></li>
<li><a href="contact.html">Contact</a></li>
</ul>
</div>
<!--end nav-->
<div id="banner">
<img alt="Banner" src="images/banner1.png">
</div>
<div id="box_wrapper">
<div id="box1">
<img alt="image1" src="images/wpa3bc34d7_05_06.jpg">
<h2>Fun for all the Family</h2>
<p>Ultimate Trumps is a game that the whole family can enjoy and learn something new from. With educational and intellgent topics even the smartest family member will discover a new fact. Ultimate Trumps is a game that is fun regardless of age. When immersed in a game of Trumps age does not matter! Try testing each other with statistics and see who has the best memory!</p>
</div>
<!-- end box1 -->
<div id="box2">
<img alt="image2" src="images/wp42622aef_05_06.jpg">
<h2>An Educational Tool</h2>
<p>Ultimate Trumps can easily be used alongside the school curriculum or to help with a school project. Ultimate Trumps is an intelligent and fun way to remember information so you can dazzle your teachers or friends with a mountain of facts.</p>
</div>
<!-- end box2 -->
<div id="box3">
<img alt="image3" src="images/boy-playing-planes.jpg">
<h2>Play and Learn</h2>
<p>We all know that when we play a game we learn something new. Sometimes the thing that we learn has little meaning but with Trumps from Ultimate Trumps, what you learn can help you succeed at school. Educational and factual topics mean that what you learn has a meaning and may aid you in exams and even quizzes!</p>
</div>
<!-- end box3 -->
</div>
<!-- end box_wrapper -->
<div id="content">
<h1>Welcome to Ultimate Trumps</h1>
<p>Ultimate Trumps is a game of many benefits ranging from just a basic Trump game to a world of learning! Everyone will be able to learn something new even without playing the game. Real topics with real facts is what Ultimate Trumps prides its self upon.</p>
<h2>More than just a game</h2>
</div>
<!-- end content -->
<div id="rightside">
<h2>Sign up to our Newsletter and keep up to date with all things Trumps!</h2>
<a href="http://ultimate-top-trumps.us7.list-manage.com/subscribe?u=037e49f40af672f44d3468969&id=72 f8a02434"><img alt="envelope" src="images/letter-clipart-letter.gif"></a>
<a href="http://www.ultimate-top-trumps.co.uk"> <img alt="utt logo" src="images/uttTitle.png"></a>
<h2>Ultimate Top Trumps</h2>
<p>Ultimate Top Trumps is your one stop for all things Trump related. The biggest site of its kind on the web, Ultimate Trumps has to be your first port of call for all collectors and fans.<br>Ultimate Trumps also buys collections so if your thinking of selling then get in contact with the team and see how they can help you.</p>
</div>
<!-- end rightside -->
<div id="footer">
Copyright © 2009 - 2017 • Ultimate Top Trumps • All rights reserved
</div>
<!-- end footer -->
</div>
<!-- end wrapper -->
</body>
</html>
Copy link to clipboard
Copied
Ah, thank you both!
2 mistakes in my code then!
Move the rightside div higher and also for simplicity add a "box-wrapper"!
MVP I suppose it would make life a lot easier to put in place the comments so that I know exactly where one thing starts and stops!
Thank you both for the help and advice!
Copy link to clipboard
Copied
nigelh70638339 wrote
MVP I suppose it would make life a lot easier to put in place the comments so that I know exactly where one thing starts and stops!
You did begin to comment sections and then stopped, I just added the rest. Try and make it a habit as if your page code starts to get complex these comments really do help when troubleshooting.
nigelh70638339 wrote
Thank you both for the help and advice!
No problem, you're welcome.
Get ready! An upgraded Adobe Community experience is coming in January.
Learn more