<!doctype html>
<!--[if lt IE 7]>      <html class="no-js lt-ie9 lt-ie8 lt-ie7"> <![endif]-->
<!--[if IE 7]>         <html class="no-js lt-ie9 lt-ie8">        <![endif]-->
<!--[if IE 8]>         <html class="no-js lt-ie9">               <![endif]-->
<!--[if gt IE 8]><!--> <html class="no-js">                      <!--<![endif]-->
<head>
    <meta charset="utf-8">

    <title>How Elvis permanently changed American pop culture</title>

    <link type="text/css" rel="stylesheet" href="/_assets/css/general/basic.css" />
    <link rel="canonical" href="https://www-2018.swansea.ac.uk/press-office/news-archive/2017/howelvispermanentlychangedamericanpopculture.php" /> 





<meta name="viewport" content="width=device-width, initial-scale=1.0;">
<meta property="su:page-type" content="News Item">
<meta property="su:section-id" content="112621">

    <script type="text/javascript" src="/_assets/vendor/enhance.js"></script>
    <script type="text/javascript">

        var SU =        {
                            customScripts: {
                                preRepositioning:  [],
                                postRepositioning: []
                            }
                        },

            dataLayer = [],

            styles =    [
                            '/_assets/css/general/desktop.css',
                            {
                                href: '/_assets/css/common/ie.css',
                                iecondition: 'all'
                            },
                            {
                                href: '/_assets/css/common/ie7.css',
                                iecondition: 7
                            },
                            {
                                href: '/_assets/css/common/ie8.css',
                                iecondition: 8
                            }
                        ],
        
            scripts =   [
                           '/_assets/js/common/modernizr-jquery.all.min.js'
                        ];
        

        

        

        scripts = scripts.concat([
            '/_assets/vendor/jquery-plugins/cycle2/jquery.cycle2.js',
            '/_assets/vendor/jquery-plugins/cycle2/jquery.cycle2.swipe.js',
            '/_assets/vendor/jquery-plugins/auto-complete/jquery.auto-complete.js',
            '/_assets/vendor/mustache.js',
            '/_assets/js/common/console.js',
            '/_assets/js/common/su.js',
            '/_assets/js/common/su/http/link.js',
            '/_assets/js/common/jquery-plugins/jQuery.showCookieMessage.js',
            '/_assets/vendor/jquery-plugins/ba-throttle-debounce/jquery.ba-throttle-debounce.js',
            '/_assets/js/common/jquery-plugins/jQuery.initialiseNavigation.js',
            '/_assets/js/common/jquery-plugins/jQuery.inputClear.js',
            '/_assets/js/general/desktop/enhanceFooterLinks.js',
            '/_assets/js/general/desktop/jQuery.initialiseSplashGallery.js',
            '/_assets/js/general/desktop/jQuery.initialiseFeaturedGallery.js',
            '/_assets/js/general/desktop/jQuery.initialiseTabPods.js',
            '/_assets/js/general/desktop/jQuery.initialiseQuadSliders.js',
            '/_assets/js/general/desktop/jQuery.stripeTableRows.js',
            '/_assets/vendor/jquery-plugins/ba-bbq/jquery.ba-bbq.js',
            '/_assets/js/general/desktop/jQuery.initialiseExpanders.js',
            '/_assets/vendor/jquery-plugins/cookie/jquery.cookie.js',
            '/_assets/vendor/jquery-plugins/jBreadCrumb/js/jquery.easing.1.3.js',
            '/_assets/vendor/jquery-plugins/jBreadCrumb/js/jquery.jBreadCrumb.1.1.js',
            '/_assets/js/general/desktop.js',
            '/_assets/js/precedent/coreFunctions.js'
        ]);

        enhance({
            loadStyles: styles,
            loadScripts: scripts,
            forcePassText: 'Enhanced version',
            forceFailText: 'Basic version'
        });
    </script>


</head>

<body id="content" class="layout-general-wrapper">
 

    <div id="general" class="layout-general">

        <!--noindex-->
        <div id="header" class="layout-header">
<h1 id="logo" class="logo">
    <span class="logo-text">How Elvis permanently changed American pop culture</span>
    <a id="logo-link" href="https://www.swansea.ac.uk/">

        <img class="logo-image" src="/_assets/images/precedent/logo.en.png" alt="Swansea University Logo" />

    </a>
</h1>
            <div id="skipToContent" class="skip-to-content">
                <a class="skip-to-content-link" tabindex="1" href="#content-items" title="skip to content">Skip to content</a>
            </div>

<div id="globalNavWrapper" class="header-links">
    <ul id="globalNav" class="header-links-list">
    
        <!-- navigation object : SU_audience navigation --><li class="header-links-list-item"><a href="http://myuni.swan.ac.uk/">Current Students</a></li><li class="header-links-list-item"><a href="https://staff.swansea.ac.uk/">Staff</a></li><li class="header-links-list-item"><a href="http://www.swanseauniversity.com.cn">&#20013;&#25991;</a></li>
        
        

    </ul>
</div>
            
            <div id="globalSearch" class="global-search-form">
<div class="global-search-form">
	<form action="https://www.swansea.ac.uk/search/">
	  <div>
	    <input type="hidden" name="c" value="swansea-web" />
	    <input
           id="global-search-form-q"
	       type="text"
	       name="q"
	       placeholder="Site Search"
	       size="31"
	       class="global-search-form-query"
	    />
	    <input class="global-search-form-submit" type="submit" value="GO" />
	  </div>
	</form>
</div>

<script class="register-custom-scripts">
(function () {
    SU.customScripts.postRepositioning.push(function () {
    
        var endpoint = 'https://swansea.funnelback.co.uk/s/suggest.json',

            unique = function(arr) {
                var hash = {}, result = [];
                for ( var i = 0, l = arr.length; i < l; ++i ) {
                    if ( !hash.hasOwnProperty(arr[i]) ) {
                        hash[ arr[i] ] = true;
                        result.push(arr[i]);
                    }
                }
                return result;
            },
            
            setHandler = function() {
                $('#global-search-form-q').off().autoComplete({
                    source: function(term, response) {
                        console.log("You typed [" + term + "]");
                        $.getJSON(
                            endpoint,
                            {
                                collection:    'swansea-web',
                                partial_query: term
                            },
                            function(data) {
                                response(unique(data));
                            }
                        );
                    }
                });
            };
    
        console.group('Initialising auto complete');
        window.setTimeout(function () {
            setHandler();
        }, 500);
        
        console.groupEnd();
    });
}());
</script>
            </div>
            
            <div id="naviBar" class="main-nav">
<!-- navigation object : SU_Main_Nav -->

            </div>
        </div>
        <!--endnoindex-->
        
        <div class="layout-container">
            <div id="main" class="layout-content">
                <div id="contentHeader" class="content-header">

                    <!--noindex-->
<div class="breadCrumbHolder module">
    <div class="breadCrumb module">
        <ul>
            <li itemscope itemtype="http://data-vocabulary.org/Breadcrumb">
                <a href="https://www.swansea.ac.uk/" itemprop="url">
                    <span itemprop="title">Home</span>
                </a>
            </li>
            <li itemscope itemtype="http://data-vocabulary.org/Breadcrumb">
                <a href="https://www.swansea.ac.uk/press-office/" itemprop="url">
                    <span itemprop="title">Press Office</span>
                </a>
            </li>
	</ul>
    </div>
</div>
                    <!--endnoindex-->

                    <h1 class="content-header-heading">How Elvis permanently changed American pop culture</h1>
                </div>

                <div id="splash-items" class="layout-splash">
                </div>

                <!--noindex-->
                <div class="layout-content-nav">
                    <div id="secondaryNavWrapper"></div>
                </div>
                <!--endnoindex-->

                <div id="content-items" class="layout-content-items content-items">
                    <div class="layout-featured-items">
                    </div>

                    <div class="layout-article-items">
  <div class="news-item-fulltext">
<p style="padding: 1.5em; text-align: center; background-color: #ffc266; font-weight: bold">
    Please note, this page has been archived and is no longer being updated.
</p>
    <p class="news-item-summary">This article was written by David Anderson, Senior Lecturer in American History, and was originally published on The Conversation.</p>

    <div class="news-item-content">
        <p>It&rsquo;s been 40 years since Elvis Presley last swivelled his hips, before his untimely death in 1977 at the age of 42.</p>
<p>To date, Elvis&rsquo;s singles &ndash; including <a href="https://www.youtube.com/watch?v=-eHJ12Vhpyc">Hound Dog</a>, <a href="https://www.youtube.com/watch?v=Bm5HKlQ6nGM">Blue Suede Shoes</a>, and <a href="https://www.youtube.com/watch?v=RxOBOhRECoo">Suspicious Minds</a> &ndash; as well as <a href="https://www.discogs.com/lists/Elvis-Soundtrack-Albums/344838">soundtracks</a> and concert albums, have sold <a href="http://www.guinnessworldrecords.com/world-records/best-selling-solo-artist">billions of copies</a> worldwide.</p>
<p>From <a href="https://www.graceland.com/elvis/biography.aspx">humble origins in Tupelo, Mississippi</a>, in the space of just a few years Elvis became an international superstar of fabulous wealth. His name, face, and voice were then &ndash; and still are now &ndash; recognised in an instant. But though he is the &ldquo;king of rock-and-roll&rdquo;, Elvis defies easy generalisation.</p>
<p>Born in a two-room shotgun shack in 1935, Elvis was a shy child, close to his parents, especially his mother. He was first introduced to performing for an audience through a local singing contest at the age of ten, and was influenced by <a href="http://www.journalnow.com/archives/the-church-of-elvis-presley-family-regularly-attended-tiny-church/article_f9d40d97-c14a-59da-a634-b5a4e6ea232b.html">gospel and singing in the choir</a> at the family&rsquo;s evangelical church.</p>
<p><img alt="" src="https://cdn.theconversation.com/files/181767/width237/file-20170811-1153-1dys07d.jpg" /> <span class="caption">Elvis Presley in Jailhouse Rock (1957).</span> <span class="attribution"><a class="source" href="https://en.wikipedia.org/wiki/File:Elvis_Presley_Jailhouse_Rock.jpg">Metro-Goldwyn-Mayer, Inc/Wikimedia</a></span></p>
<p>The Presleys moved to Memphis, Tennessee, in 1948. As a teenager, Elvis hung out on the iconic <a href="http://www.huffingtonpost.com/john-mariani/memphis-unmatched-for-american-music-history_b_7973690.html">Beale Street</a>, exploring the famed music scene and listening to white and black, urban and rural styles and sounds, especially rhythm-and-blues. This was also where he started experimenting with fashion and changing his appearance, not least his hair which he styled with <a href="http://www.nme.com/photos/75-geeky-facts-you-might-not-know-about-elvis-presley-1418217">Vaseline into a quiff</a>.</p>
<p>During the summer of 1954, <a href="http://www.sunrecords.com/artists/sam-phillips">Elvis recorded</a> a version of the old blues number <a href="https://www.youtube.com/watch?v=NmopYuF4BzY">That&rsquo;s All Right (Mama)</a> in downtown Memphis. The recording was a sensation, and was played nonstop on local radio stations. From there, Elvis and his band evolved a distinctive <a href="http://southernstudies.olemiss.edu/publications/the-new-encyclopedia-of-southern-culture/">rock-and-roll &ndash; or &ldquo;rockabilly&rdquo; &ndash; sound</a>, blending different strains of music with an energetic vocal style, new rhythms and electric guitars.</p>
<p>In 1955, as his music career began to take off, Elvis signed with Nashville&rsquo;s RCA record label, a deal arranged by music promoter <a href="http://www.independent.co.uk/news/people/obituary-col-tom-parker-1284639.html">Colonel Tom Parker</a>, who later became the singer&rsquo;s long-time manager. Elvis&rsquo;s first RCA single, <a href="https://www.youtube.com/watch?v=e9BLw4W5KU8">Heartbreak Hotel</a>, released in 1956, topped the music charts in the US.</p>
<p>As his music rose through the tracks, Elvis appeared on a number of US network television variety shows, most notably the <a href="http://www.rollingstone.com/music/news/elvis-presley-on-tv-10-unforgettable-broadcasts-20160128">Ed Sullivan Show</a>, accelerating his national profile and fame. Soon after he also <a href="https://theconversation.com/elvis-presley-was-paid-a-kings-ransom-for-sub-par-movies-because-they-were-marketing-gold-81586">launched a movie career</a> with <a href="https://www.youtube.com/watch?v=l3KHWlMaPcw">Love Me Tender</a>, which was a success at the box office <a href="https://www.rottentomatoes.com/m/love_me_tender/">if not with critics</a>.</p>
<h2>All shook up</h2>
<p>With rose tinted glasses, it may seem that Elvis was beloved by all. But the singer was often the subject of controversy, provoking strong opinions among the public and in the press. His on-screen swagger and performance style, consisting of overstated gyrations and other body movements stressing the beat, thrilled his teenage audiences, shaping their fads and fashions.</p>
<p><iframe height="260" src="https://www.youtube.com/embed/MMmljYkdr-w?wmode=transparent&amp;start=0" width="440"></iframe></p>
<p>Elvis was labelled a &ldquo;<a href="http://content.time.com/time/magazine/article/0,9171,824916,00.html">sexhibitionist</a>&rdquo;, and his suggestive manner was criticised by churches that claimed his moves <a href="http://www.rollingstone.com/music/news/when-elvis-presley-scandalized-america-and-mc-hammer-topped-the-charts-20110607">corrupted the minds</a> of young Americans. Outraged parents meanwhile equated rock-and-roll with <a href="https://books.google.co.uk/books?id=EOm5DQAAQBAJ&amp;printsec=frontcover&amp;dq=enduring+vision&amp;hl=en&amp;sa=X&amp;ved=0ahUKEwjUt8no7snVAhUo1oMKHWwXBsAQ6AEIJjAA%20-%20v=onepage&amp;q=enduring%20vision&amp;f=false#v=snippet&amp;q=enduring%20vision&amp;f=false">disobedience and delinquency</a>. Even <a href="https://books.google.co.uk/books?id=NypSAxK5IrgC&amp;dq=guralnick&amp;hl=en&amp;sa=X&amp;ved=0ahUKEwjhw-DL7snVAhUN3YMKHYH4BN8Q6AEIMTAC">Frank Sinatra</a> waded into the debate, claiming the new music genre &ldquo;manages to be the martial music of every sideburned delinquent on the face of the earth&rdquo;.</p>
<p>Rock-and-roll&rsquo;s biracial origins, a fusion of white country and black rhythm-and-blues, and Elvis&rsquo;s prominent role in developing the genre, also led to persistent accusations of cultural appropriation. That these debates played out against a backdrop of racial discrimination, segregation in the south and the national movement for civil rights only fuelled resentment towards Elvis.</p>
<h2>Always on my mind</h2>
<p>In 1958, Elvis was <a href="http://www.military.com/veteran-jobs/career-advice/military-transition/famous-veterans-elvis-presley.html">drafted for military service</a>, a major event for fans and media. After basic training, he joined the 3rd Armoured Division and was stationed in Germany for two years. Yet the hits continued apace, including 1960&rsquo;s best-selling ballads, <a href="https://www.youtube.com/watch?v=Uwelrtb8Oho">It&rsquo;s Now or Never</a> and <a href="https://www.youtube.com/watch?v=9XVdtX7uSnk">Are You Lonesome Tonight?</a>.</p>
<p>During the 1960s, Elvis also starred in <a href="http://articles.latimes.com/2010/jan/05/entertainment/la-et-elvis5-2010jan05">several prescribed Hollywood movies</a>, usually musical comedies that were accompanied by a soundtrack album. However, by mid-decade Elvis&rsquo;s career was in decline, his chart success waning. Several years on from his last live stage performance, he launched a comeback with a celebrated television special, &ldquo;<a href="http://ultimateclassicrock.com/elvis-presley-68-comeback-special-airs/">Elvis</a>&rdquo;, in 1968, which was followed by &ldquo;<a href="http://www.npr.org/2013/01/06/168747077/when-elvis-said-aloha-from-hawaii-the-world-watched">Aloha from Hawaii</a>&rdquo; in 1973.</p>
<p>His career relaunched, Elvis&rsquo;s 1970s concerts in Las Vegas, where he had married <a href="http://www.vogue.com/article/wedding-elvis-presley-priscilla-presley">Priscilla Beaulieu</a> in 1967, were popular and profitable; the singer performing hits such as <a href="https://www.youtube.com/watch?v=WIDyNfJzLd8">The Wonder of You</a>, <a href="https://www.youtube.com/watch?v=zf2VYAtqRe0">Burning Love</a>, and &ldquo;<a href="https://www.youtube.com/watch?v=8gyvTV5OJ5E">An American Trilogy</a> in flared rhinestone jumpsuits.</p>
<p>Sadly, after years of prescription drug misuse and in failing health, Elvis passed away on August 16, 1977, after <a href="http://www.nytimes.com/learning/general/onthisday/big/0816.html">suffering a sudden heart attack</a> in his <a href="https://www.graceland.com/events/ultimate_eta_contest.aspx">Graceland</a> home. Thousands of <a href="http://www.rollingstone.com/music/features/funeral-in-memphis-19770922">mourners gathered</a> outside his Memphis estate in private tribute to view Elvis&rsquo;s body which lay in an open casket. Commenting on Presley&rsquo;s legacy, the US president, Jimmy Carter, said: "His music and his personality &hellip; permanently changed the face of American popular culture.&rdquo;</p>
<p>From a shy young boy to global superstar, the icon of the 20th century that was Elvis Presley is still as enigmatic today as when he was alive. One of the most celebrated and influential popular musicians of all time, his gift and talent, flaws and failings are as enchanting now as they were when he first snarled his lips.</p>
    </div>

    <ul class="news-item-post-info-container vcard">
        <li class="news-item-post-info author">
           Posted by
            <span class="fn">Catrin Newman</span>
            &lt;<a class="email" href="mailto:c.a.newman@swansea.ac.uk">c.a.newman@swansea.ac.uk</a>&gt;
        </li>

        <li class="news-item-post-info">
            <a href="/press-office/news-archive/2017/howelvispermanentlychangedamericanpopculture.php" rel="bookmark">
                <abbr class="published" title="2017-08-14T11:45:00+01:00">Monday 14 August 2017 11.45 BST</abbr>
            </a>
        </li>

        <li class="news-item-post-info updated-container">
            <abbr class="updated" title="2019-09-10T14:42:53+01:00">Tuesday 10 September 2019 14.42 BST</abbr>
        </li>

        <li class="news-item-post-info">
        	<span class="fn org">Catrin Newman</span>
        </li>
    </ul>

</div>

                    </div>

                    <div class="layout-related-items">
                    </div>
                </div>


            </div>

            <!--noindex-->
            <div id="footer" class="layout-footer">
                <ul id="footerLinks" class="footer-links">
<!-- navigation object : SU_footer navigation --><li class="footer-links-list-item"><a href="/the-university/contact/">Contact Us</a></li><li class="footer-links-list-item"><a href="/personnel/jobs/">Jobs</a></li><li class="footer-links-list-item"><a href="/the-university/colleges/">Colleges</a></li><li class="footer-links-list-item"><a href="/press-office/">Press</a></li><li class="footer-links-list-item"><a href="https://www.swansea.ac.uk/about-us/safety-and-security/health-and-safety/">Health &amp; Safety</a></li><li class="footer-links-list-item"><a href="/includes/footer/disclaimer-and-copyright/">Disclaimer &amp; Copyright</a></li><li class="footer-links-list-item"><a href="/includes/footer/site-map/">Site map</a></li><li class="footer-links-list-item"><a href="/includes/footer/privacyandcookies/">Privacy and Cookies</a></li><li class="footer-links-list-item"><a href="http://www.swan.ac.uk/course-search/">Course Search</a></li>
                </ul>

                <div id="footerDisclaimer" class="footer-disclaimer">
                    <p class="footer-disclaimer-text">Swansea University is a registered charity. No. 1138342.</p>
                </div>
            </div>
            <!--endnoindex-->

        </div>

    </div>


<script id="desktop-header-template" type="text/x-tmpl-mustache">

    <div id="header" class="layout-header">
        <div class="skip-to-content" id="skipToContent">
            {{{ skipToContent }}}
        </div>

        <h1 id="logo" class="logo">
            {{{ logo }}}
        </h1>

        <div id="globalNavWrapper" class="header-links">
            <ul id="globalNav" class="header-links-list">
                {{{ globalNav }}}
            </ul>
        </div>

        <div id="globalSearch" class="global-search-form">
            {{{ globalSearch }}}
        </div>
                    
        <div id="naviBar" class="main-nav">
            <ul id="mainNav" class="main-nav-list">
                {{{ mainNav }}}
            </ul>
        </div>
    </div>

</script>


<script id="mobile-header-template" type="text/x-tmpl-mustache">

    <div id="header" class="layout-header">
        <span class="layout-menu-bar">
            <a id="layout-menu-bar-toggle" class="layout-menu-bar-toggle" href="#">{{mobile.linksText}}</a>
        </span>

        <a id="logo-link" href="{{mobile.logoLinkHref}}">
            <img class="logo-image" alt="{{mobile.logoAlt}}" src="{{mobile.logoSrc}}" />
        </a>
    </div>

</script>


<script id="desktop-menu-template" type="text/x-tmpl-mustache">

    <div class="layout-content-nav">
        <div id="secondaryNavWrapper">
             <ul id="secondaryNav" class="content-nav content-nav-items">
                 {{{secondaryNav}}}
             </ul>
         </div>
    </div>

</script>


<script id="mobile-menu-template" type="text/x-tmpl-mustache">

    <div class="layout-content-nav">
        <div id="globalNavWrapper">
            {{{globalNav}}}
        </div>

        <div id="naviBar">
            {{{mainNav}}}
        </div>

        <div id="secondaryNavWrapper">
             <ul id="secondaryNav">
                 {{{secondaryNav}}}
             </ul>
         </div>
    </div>

</script>


<script id="desktop-tabs-pod-template" type="text/x-tmpl-mustache">

    <h2 class="tabs-pod-title">{{ podTitle }}</h2>
    <div class="tabs-pod-tabs">

        <ul class="tabs-item-list">
{{#tabs}}
            <li class="tabs-item-list-tab-item tabs-pod-tabs-tab-heading">
                <a class="tabs-item-list-tab-item-link" href="#">{{ tabHeading }}</a>
            </li>
{{/tabs}}
        </ul>

{{#tabs}}
        <div class="tabs-pod-tabs-tab">
            <div class="tabs-pod-tabs-tab-content">
                {{{ tabContent }}}
            </div>
        </div>
{{/tabs}}

    </div>

</script>


<script id="mobile-tabs-pod-template" type="text/x-tmpl-mustache">

    <h2 class="tabs-pod-title">{{ podTitle }}</h2>
    <div class="tabs-pod-tabs">
{{#tabs}}
        <div class="tabs-pod-tabs-tab">
            <h3 class="tabs-pod-tabs-tab-heading is-collapsed">
                <a href="#">{{ tabHeading }}</a>
            </h3>
            <div class="tabs-pod-tabs-tab-content" style="display: none">
                {{{ tabContent }}}
            </div>
        </div>
{{/tabs}}
    </div>

</script>


</body>

</html>
