<!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>The fight for education doesn’t stop when working-class boys get into university</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/2018/thefightforeducationdoesntstopwhenworking-classboysgetintouniversity.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="117407">

    <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">The fight for education doesn’t stop when working-class boys get into university</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">The fight for education doesn’t stop when working-class boys get into university</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">The following article by Michael Ward of Swansea University was originally published by The Conversation.</p>

    <div class="news-item-content">
        <p><span><img alt="" src="https://images.theconversation.com/files/208657/original/file-20180302-65533-93f58e.jpg?ixlib=rb-1.1.0&amp;q=45&amp;auto=format&amp;w=926&amp;fit=clip" /></span></p>
<h6><span><span>A hard working ethic can make students stand out for the wrong reasons.&nbsp;</span><span class="attribution"><a class="source" href="https://www.shutterstock.com/image-photo/male-student-laptop-studying-university-library-214665313">Ermolaev Alexander/Shutterstock</a></span></span></h6>
<p><span>Whether it is high rates of&nbsp;</span><a href="https://www.samaritans.org/about-us/our-research/facts-and-figures-about-suicide">suicide</a><span>&nbsp;and mental health problems, a lack of appropriate&nbsp;</span><a href="https://theconversation.com/you-dont-have-to-be-male-to-be-a-role-model-for-men-71296">role models</a><span>,&nbsp;</span><a href="https://theconversation.com/the-myth-of-the-fatherless-society-73166">absent fathers</a><span>, access to secure employment, drug and alcoholic dependency, men &ndash; when compared to their female counterparts &ndash; are often reported to be in&nbsp;</span><a href="https://goodmenproject.com/featured-content/why-men-are-in-trouble/">trouble</a><span>.</span></p>
<p>Concern has also centred on boys&rsquo; supposed educational &ldquo;underachievement&rdquo; &ndash; and an idea that they suffer from what some have called a&nbsp;<a href="http://www.dailymail.co.uk/debate/article-2159868/Poverty-aspiration-Britain-cured-welfare-handouts.html">poverty of aspiration</a>&nbsp;or a&nbsp;<a href="http://www.bbc.co.uk/news/uk-england-leeds-25333295">poverty of expectation</a>. Yet, as I and sociologists have&nbsp;<a href="https://theconversation.com/place-plays-a-vital-role-in-how-boys-learn-to-become-men-68367">written before</a>, this so-called underachievement&nbsp;<a href="https://www.palgrave.com/gb/book/9781137401588">isn&rsquo;t the same for all boys</a>&nbsp;&ndash; neither is it the fault of schools alone.</p>
<p>Considering the arguments raging about the UK Higher Education sector at present and the ongoing&nbsp;<a href="https://theconversation.com/what-you-need-to-know-about-the-tuition-fee-review-and-how-it-could-affect-students-91182">tuition fees discussions</a>, it is important now, more than ever, to acknowledge the&nbsp;<a href="https://www.theguardian.com/education/2016/jan/05/gender-gap-uk-degree-subjects-doubles-eight-years-ucas-study">roles universities play</a>&nbsp;in this debate.</p>
<p>My research, carried out over the past ten years &ndash; resulting in a recently published&nbsp;<a href="https://www.routledge.com/Higher-Education-and-Social-Inequalities-University-Admissions-Experiences/Waller-Ingram-Ward/p/book/9781138212886">book</a>&nbsp;&ndash; suggests that for young working-class men who are academically successful, financing and getting into university is only the start of the battle.</p>
<h2>Dog eat dog</h2>
<p>For two and a half years, I visited a&nbsp;<a href="https://www.timeshighereducation.com/books/review-from-labouring-to-learning-michael-ward-palgrave-macmillan">post-industrial community</a>&nbsp;in south Wales, interviewing and generally &ldquo;hanging out&rdquo; with a group of young men during their final years of secondary school. A small group of these achieved very high grades and saw university as the next logical step.</p>
<p>One young man I&rsquo;ll call &ldquo;David&rdquo; told me that he had looked at different universities and had prioritised those he felt would give him the best chance of future success and opportunities to work in the film industry and visit America. He&rsquo;d applied for Oxford and attended a preparation day event in Bristol to give him the best chance of being selected. However, his interview at Oxford was unsuccessful and he was not offered a place. When we talked about it later and how useful this preparation day had been, David told me that his strong working-class Welsh accent was a real disadvantage.</p>
<blockquote>
<p><em>I could hear myself, everyone was really different is the best way to put it. They spoke, you know, with that really intelligent sounding non-dialect accent. At one point they said, &lsquo;do you want to speak in front of the group&rsquo; and I said &lsquo;no I don&rsquo;t&rsquo;.</em></p>
</blockquote>
<p>It wasn&rsquo;t just the accents which marked him out, David also felt that his experience of school and working together with his classmates had disadvantaged him.</p>
<blockquote>
<p><em>There it was dog-eat-dog, you just look after yourself, and there everybody was [puts on an upper-class accent] &lsquo;I&rsquo;m very smart, listen to me&rsquo;.</em></p>
</blockquote>
<p>While the journey to university is a challenge for young men like David, other problems also appear for young men from working-class backgrounds once they are there. In one of my interviews in Canada with young men who were the first in their family to go to university, &ldquo;Alex&rdquo; told me, he didn&rsquo;t have many friends, he found his professors patronising and his hard studying ethic marked him out as different from his less studious peers.</p>
<h6><img alt="" src="https://images.theconversation.com/files/208645/original/file-20180302-65525-fzfx8f.jpg?ixlib=rb-1.1.0&amp;q=45&amp;auto=format&amp;w=237&amp;fit=clip" /><span class="caption">Graduation can be a hard won thing.</span>&nbsp;<span class="attribution">By J. Henning Buchholz/Shutterstock</span></h6>
<p>Alex&rsquo;s desire to succeed came from his experience of working in what he termed &ldquo;one terrible job after another. Gas stations, coffee shops &ndash; nothing that I could ever move on from&rdquo;. After a few years of this, he&rsquo;d really had enough and come to the realisation that &ldquo;this type of experience doesn&rsquo;t lead to something better, it&rsquo;s shitty. When you have this skill set, the only type of places that are going to hire you are these places. Getting locked into it, is like a death sentence&rdquo;.</p>
<p>His working-class credentials made him stand out while at university, but his experience of higher education made him also feel out of place when he returned to his home community during the holidays. He explained that men from his community worked in lumber yards and paper mills, the local factory and prisons. Going to university was an alien concept for many and, just by attending, he marked himself out as different and didn&rsquo;t feel part of either world.</p>
<p>The working-class &ldquo;<a href="https://theconversation.com/place-plays-a-vital-role-in-how-boys-learn-to-become-men-68367">achieving boys</a>&rdquo; I have met, have often had to adopt a hybridised form of masculinity, forced by economic circumstance to escape their roots, but when they return to their home communities, they can feel further out of place. The implication of this on their ability to be successful is important and shows how much harder working-class boys must work than those from more privileged backgrounds to achieve in different aspects of their lives.</p>
<p>For young people like David and Alex, the decks it seems are doubly stacked against them.</p>
<p>Though my research has focused on speaking to young working-class men, working-class women&nbsp;<a href="http://www.independent.co.uk/voices/working-class-northern-woman-university-london-kings-social-classes-trapped-a8193636.html">face similar</a>&nbsp;and&nbsp;<a href="https://www.theguardian.com/commentisfree/2017/sep/11/bame-working-class-imposter-university-freshers-tips">other issues</a>&nbsp;purely because of their class status. Regardless of gender it is clear that working-class students are being unfairly marked purely by a label which has no bearing on their educational achievements.</p>
<p><span>Michael Ward, Lecturer in Applied Social Science, Swansea University</span></p>
<hr />
<p><img alt="The Conversation " src="http://www.swansea.ac.uk/media/conversation-logo-3ef91e0a2031c5d9350f37bac3cf5273ef6da3660ffaf7c422b9695f09b6f171.png" title="The Conversation " />This article was originally published on&nbsp;<a href="http://theconversation.com/" target="_blank">The Conversation</a>. Read the&nbsp;<a href="https://theconversation.com/the-fight-for-education-doesnt-stop-when-working-class-boys-get-into-university-92153" target="_blank">original article</a>.</p>
    </div>

    <ul class="news-item-post-info-container vcard">
        <li class="news-item-post-info author">
           Posted by
            <span class="fn">Marta Tome</span>
        </li>

        <li class="news-item-post-info">
            <a href="/press-office/news-archive/2018/thefightforeducationdoesntstopwhenworking-classboysgetintouniversity.php" rel="bookmark">
                <abbr class="published" title="2018-03-09T16:06:00+00:00">Friday 9 March 2018 16.06 GMT</abbr>
            </a>
        </li>

        <li class="news-item-post-info updated-container">
            <abbr class="updated" title="2018-03-09T16:33:56+00:00">Friday 9 March 2018 16.33 GMT</abbr>
        </li>

        <li class="news-item-post-info">
        	<span class="fn org">Marta Tome</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>
