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 9126671
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 17, 20262026-06-17T07:05:41+00:00 2026-06-17T07:05:41+00:00

HTML: <!DOCTYPE HTML> <html> <head> <meta charset=UTF-8> <title></title> <link href=style.css rel=stylesheet type=text/css> <script src=http://code.jquery.com/jquery-1.6.4.min.js></script>

  • 0

HTML:

<!DOCTYPE HTML>
<html>
<head>
    <meta charset="UTF-8">
    <title></title>
    <link href="style.css" rel="stylesheet" type="text/css">
    <script src="http://code.jquery.com/jquery-1.6.4.min.js"></script>

    <link href='http://fonts.googleapis.com/css?family=Open+Sans:300' rel='stylesheet' type='text/css'>
</head>

<body>

    <div id="nav">
        <p id="welcomeLink">Welcome</p>
        <p id="historyLink">History</p>
        <p id="valueLink">The Value</p>
        <p id="contactLink">Contact</p>
    </div>
    <div id="welcomeArrow"></div>
    <div id="historyArrow"></div>
    <div id="valueArrow"></div>
    <div id="contactArrow"></div>

    <div id="wrapper">

        <div id="mainHeader">
            <img src="Carnaby_Full__Logo_1.jpg" />
        </dvi>

        <div id="content">

            <p id="welcomeP">
                When clothed, one's image, apart from his hands and face, is completely self-defined.  That means that everyone has a style.  It's upon this idea that Carnaby Custom works. Operating from our showroom in Midtown Manhattan, my father and I provide the most valuable custom made suits, shirts, and sport coats in the tri-state area.
            </p>

            <p id="historyP">
                In 1971, Leonard Logsdail Sr. opened his bespoke tailoring shop in London. At that time, Carnaby Street, right off of the famous Saville Row, was the fashion center of the world.  For 20 years, he ran a successful business, traveling around the world, hand-making garments for lawyers, lords, governors, princes, businessmen, barons, earls, bankers, and actors.  At the bidding of my American mother, he moved his Saville Row tailoring business to New York City. Since then, he quickly became one of the most well-respected tailors in the country and the world. <br> <br> As you can imagine, making a suit by hand is no easy task. It requires plenty of time and money. This is why Carnaby Custom exists. Carnaby Custom provides a custom garment, overseen by and utilizing the experience of master tailor Leonard Sr, for a much more affordable price point.
            </p>

            <p id="valueP">
            No two people are shaped the same way. Hypothetically, if we were to make suits for two men with identical dimensions (arm, length, height, etc), the completed garments would still not fit one another. This is because people stand with different postures, have varying shoulder heights, pigeon chests, uneven hips-just to name a few. We take all of these things into account when sizing our clients up for custom made to measure garments. This allows for a superior fit. <br> <br>

    Because your future garment does not yet exist, we work together with our clients designing the suit to however best suits his lifestyle. With thousands of fabrics, hundreds of linings, and countless other style and preference options-the possibilities are endless. <br> <br>

    During the first appointment, we will ask a series of questions in order to better understand your style and needs. Unlike salesmen at most retail stores, who get paid an hourly rate, no matter if you're happy with your purchase or not, we are always looking to do future business with our clients. This means that you can be sure that we will do everything in our power to make your purchase a satisfactory one. <br> <br>

    We take great pride in our ability to provide custom garments at the most competitive prices in the market today. Our garments are available at the same price point that most retailers sell their off-the-rack suits for. Except ours will be made specifically for you! </p></a>

        </div>

    </div> 

</body>
</html>

CSS:
body {
background: url(navy_blue/navy_blue.png);
}

#nav {
    position: absolute;
    text-align:center;
    top: 322px;
    float: left;
    left: 155px;
    padding-right: 20px;
    padding-left: 20px;
    background: #D5D5D5;
    font-family: 'Open Sans', sans-serif;
    font-size: 16px;
    border: black solid thin;
    border-radius: 10px;
    line-height: 16px;  
}

#nav p {
    color: #000099;
}

#nav p:hover {
    opacity: .6;
    cursor: pointer;
    -moz-transition: .3s ease-in-out;
    -webkit-transition: .3s ease-in-out;
}

#welcomeArrow {
    position: absolute;
    left: 255px;
    top: 336px;
    width: 0; 
    height: 0; 
    border-top: 17px solid transparent;
    border-bottom: 17px solid transparent;
    border-left: 17px solid #D5D5D5;
}

#historyArrow {
    display: none;
    position: absolute;
    left: 256px;
    top: 364px;
    width: 0; 
    height: 0; 
    border-top: 17px solid transparent;
    border-bottom: 17px solid transparent;
    border-left: 17px solid #D5D5D5;
}

#valueArrow {
    display: none;
    position: absolute;
    left: 256px;
    top: 396px;
    width: 0; 
    height: 0; 
    border-top: 17px solid transparent;
    border-bottom: 17px solid transparent;
    border-left: 17px solid #D5D5D5;
}

#contactArrow {
    display: none;
    position: absolute;
    left: 256px;
    top: 430px;
    width: 0; 
    height: 0; 
    border-top: 17px solid transparent;
    border-bottom: 17px solid transparent;
    border-left: 17px solid #D5D5D5;
}


#wrapper {
    background: url(billie_holiday/billie_holiday.png);
    top: auto;
    margin: auto;
    text-align: center;
    height: auto;
    width: 640px;
    font-family: 'Open Sans', sans-serif;
    padding: 30px;
    border: black solid medium;
    border-radius: 10px;
}

#wrapper p {
    padding-top: 20px;
    font-size: 14px;    
}

#mainHeader img{
    border: solid thin black;
}

#welcomeP {
    display: inline;
}

#historyP {
    display: none;
}

#valueP{
    display: none;
}

#contactP {
    display: none;
}

#welcomeH {
    font-size: 24px;
    color: #993300; 
}
  • 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-17T07:05:42+00:00Added an answer on June 17, 2026 at 7:05 am

    Put the navigation div within the wrapper div and change its position to relative. Then give the navigation div a negative left margin. You might need to adjust your little arrow things afterwards.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

<!DOCTYPE html> <html> <head> <meta charset=utf-8 /> <title>title</title> <link href=/Content/Site.css rel=stylesheet type=text/css /> <script
<!DOCTYPE HTML> <html lang=en> <head> <meta charset=utf-8> <title>Amateur</title> <link rel=stylesheet href=css/reset.css type=text/css> <script src=http://code.jquery.com/jquery-1.8.0.js>
<!DOCTYPE html> <html> <meta http-equiv=Content-Type content=text/html;charset=utf-8/> <head> <title>temp</title> <link rel=stylesheet href=style.css/> <script type=text/javascript src=http://code.jquery.com/jquery-1.7.2.js></script>
the Html is : <!DOCTYPE HTML> <html lang=en-US> <head> <meta charset=UTF-8> <link rel=stylesheet href=wp-1-main.css>
<!DOCTYPE html> <html> <head> <meta http-equiv=Content-Type content=text/html; charset=utf-8/> <title>FAQ Section</title> <link rel=stylesheet type=text/css href=styles.css/>
<!doctype html> <html lang=en> <head> <meta charset=utf-8/> <style> form:focus{ background:red; } </style> <title>Home, sweet
The sample page: <!DOCTYPE html> <html> <head> <meta charset=utf-8> <title>Button test</title> <style> * {
<!DOCTYPE html> <html lang=en> <head> <meta http-equiv=Content-Type content=text/html; charset=utf-8> <script src=http://ajax.googleapis.com/ajax/libs/jquery/1.3/jquery.min.js type=text/javascript></script> <script type=text/javascript>
<!DOCTYPE html> <html> <head> <meta charset=utf-8> <title></title> <meta name=description content=/> <meta name=keywords content=/> <link
I have this HTML Code: <!doctype html> <html> <head> <meta charset=utf-8> <title>Untitled Document</title> <link

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.