Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 7766917
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 1, 20262026-06-01T15:32:41+00:00 2026-06-01T15:32:41+00:00

I’m getting back into web design after a several year break, so a lot

  • 0

I’m getting back into web design after a several year break, so a lot of the tips and tricks that I used on a regular basis before just don’t seem to be working. I’m designing a guild website for my World of Warcraft guild for some practice, but I’m having issues getting the div background images to show up properly on the page.

The page consists of a container DIV, a header DIV, a Menu DIV, and a three column layout, followed of course by a footer div. Above the menu I have a little artistic background I’m susing, and I managed to get that one to show up; however, I can’t get the proper image to show up above the left or right bars properly. I’ve searched the net a ton, and am still dumbfounded as to what I’m doing wrong. Here is a screen shot of what I sort of want the layout to look like: http://s19.postimage.org/7svzmuaf7/Layout_V2.jpg

Currently, this is what I’m getting when you visit the website in any major browser: http://cirquedufreak.net78.net/

There is obviously some differences in the two, as one is just a jpg, and the other is a css/html combo, and that I’m aware of. Thank you for any help you can provide.

Source Code:

index.php:

<?php
session_start();
include("wowarmoryapi/BattlenetArmory.class.php");
?>
<!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>Home - Cirque du Freak of Vashj</title>
<link rel="stylesheet" type="text/css" href="layout.css" />
<link rel="shortcut icon" type="image/x-icon" href="/favicon.ico">
</head>

<body>
<div id="container">
    <div id="header">&nbsp;</div>
    <div id="menu">
        <ul>
            <li><a href="#">Home</a></li>
            <li><a href="#">Roster</a></li>
            <li><a href="#">Forums</a></li>
            <li><a href="#">About</a></li>
            <li><a href="#">Contact</a></li>
            <li><a href="#">Books</a></li>
        </ul>
    </div>
    <div id="leftbar">LEFTBAR</div>
    <div id="content">
        <div id="gmod">
            <h1>Important Message</h1>
            <p>This is where any "breaking news" or important information that you want to give to the players will be displayed.</p>
        </div>
    </div>
    <div id="rightbar">
        <p>For an invitation, contact one of the following players in game:</p>
        <?php

        ?>
    </div>
    <div id="footer">&copy;2012 Cirque du Freak Guild of Vashj; All Rights Reserved.<br />World of Warcraft and related images and materials are &copy; Blizzard Entertainment.</div>
</div>
</body>
</html>

layout.css:

@charset "utf-8";
/* CSS Document */

/* CSS LAYOUT BEGIN */
body {
    margin: 0;
    padding: 0;
    background-color: #000;
    color: #FC3;
    text-align: center;
}
div#container {
    margin: 0 auto;
    text-align: left;
    width: 1024px;
    height: auto;
}
div#header {
    width: 1024px;
    height: 147px;
    background: url(images/v2_header.png);
}
div#menu {
    width:1024px;
    height: 70px;
    text-align:center;
    background: url(images/v2_menuBG.png);
}
div#leftbar {
    float: left;
    width: 170px;
    height: 525px;
    min-heigh: 150px;
    background-image: url(images/v2_barBG.png) no-repeat;
    display: inline-block;
    background-position: top left;
}
div#content {
    float: left;
    width: 684px;
    min-height: 50px;
    height: 525px;
}
div#rightbar {
    float: right;
    width: 170px;
    height: 525px;
    min-height: 50px;
    background-image: url(images/v2_barBG.png) no-repeat;
}
div#footer {
    width: 1024px;
    height: 50px;
    text-align: center;
    clear: both;
}
/* CSS LAYOUT END */

/* CSS MENU BEGIN */
#menu ul {
    margin: 0;
    padding: 0;
    float: left;
    list-style: none;
    width: 1024px;
}

#menu ul li {
    display: inline;
}

#menu ul li a {
    float: left;
    text-decoration: none;
    padding: 10.5px 11px;
    width: 140px;
    color: #FF0;
    font-weight: bold;
    font-size: 24px;
    background-color: transparent;
    vertical-align: text-bottom;
}
#menu ul li a:visited {
    color: #FF0;
}
#menu ul li a:hover, #menu ul li .current {
    color: #F00;
    text-decoration: underline;
    background-color: transparent;
}
/* CSS MENU END */

/* LEFT BAR CSS BEGIN */

/* LEFT BAR CSS END */

/* CONTENT BOX CSS BEGIN */
#content div#gmod {
    width: 500px;
    height: 150px;
    text-align: center;
    border: #FFF 3px solid;
    background-color: #000;
    margin: 0 auto;
    color: #FFF;
    overflow-style: auto;
    overflow: scroll;
    overflow-x: hidden;
    padding-left: 4px;
    padding-right: 4px;
}
#content div#gmod h1 {
    text-align: center;
    color: #F00;
    font-size: 24px;
    font-weight: bold;
    text-decoration: underline;
    padding: 0px 5px;
/* CONTENT BOX CSS END */

/* RIGHT BAR CSS BEGIN */

/* RIGHT BAR CSS END */

/* FOOTER CSS BEGIN */
#footer {
    color: #999;
    text-align: center;
}
/* FOOTER CSS END */

Thank you very much for taking the time to assist me with this problem.

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-01T15:32:42+00:00Added an answer on June 1, 2026 at 3:32 pm

    Don’t use

    background-image: url(images/v2_barBG.png) no-repeat;
    

    but

    background: url(images/v2_barBG.png) no-repeat;
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

link Im having trouble converting the html entites into html characters, (&# 8217;) i
That's pretty much it. I'm using Nokogiri to scrape a web page what has
I have a French site that I want to parse, but am running into
I'm parsing an RSS feed that has an &#8217; in it. SimpleXML turns this
I am currently running into a problem where an element is coming back from
For some reason, after submitting a string like this Jack’s Spindle from a text
I used javascript for loading a picture on my website depending on which small
I have a string like this: La Torre Eiffel paragonata all&#8217;Everest What PHP function
this is what i have right now Drawing an RSS feed into the php,
I've got a string that has curly quotes in it. I'd like to replace

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.