Join Our Discord Community

Gillette Commercial: Pro #MeToo and against Toxic Masculinity?

The new Gillette commercial asks the human race to be more civil, and expects the male gender to embrace their manhood the way it is meant to be!

Published on: Jan 16, 2019
Written by: Zahra Farid
Share:

Gillette Commercial Faces Backlash

“The best that men can be” is apparently being furious over a Gillette commercial that literally works in their favor.

Is it 2026? Or have we gone back to the era where genders were associated with colors and dominance?

The internet has been divided yet again on the controversial ad of Gillette.

The brand tried to take a positive spin on the whole #MeToo agenda.

The height of toxic masculinity has reach a new high: Gillette commercial.

People are losing their shizzle and cool over the ad because they think it affects the ecosystem that the brand revolves around.

The Razor Has Cut Deep And The Wounds Are Fresh And Open!

The ad spotlights bad male behavior – and the insecure rubes on the internet can’t handle it!
Gillette didn’t just condemn bad behavior, something most men do whenever they see it – it suggested the behavior represents the norm.

And I think it’s true, it’s what society has come down to?

The commercial also indirectly shines a light on the #MeToo movement.

Now, the cowardly media, scared of the social media mob, goes against the ad.

Can you blame anybody if they hated social media because they don’t like the ugly side of it!

Why Can’t People See The Big Picture?

They are actually portraying how MEN are the ones changing the controversial general thought about the male gender!

Most shaving advertisements highlight gravelly voiced men swelling out their masculinity (read: insecure masculinity).

And when Gillette commercial comes forward with an ad that puts forward basic human decency, it’s unacceptable?

All hell breaks loose?

There are clips of @terrycrews, a sexual assault survivor, affirming in front of Congress that men need to hold other men responsible and accountable. #MeToo #GilletteAd

The advertisement indicates men doing just that: warding off a pack of bullies. And limiting another guy from harassing a woman.

Why has toxic masculinity stopped a certain group to boycott the grooming brand?

“We expected a debate,” Pankaj Bhalla, Gillette’s North America brand director, told CNN, although, we’re not sure that boycotts from hate groups are exactly what Bhalla had in mind.

Bhalla specifically says that “The ad is not about toxic masculinity. It is about men taking more action every day to set the best example for the next generation.”

The new Gillette commercial asks the human race to be more civil. And expects the male gender to embrace their manhood the way it is meant to be!

Some cheers met with several social boos!

On YouTube and Twitter, the replies were flooded by people angry about the ad.

Some men have said it was insulting, and while other said it was “feminist propaganda.”

Gillette

Gillette

Gillette

While the other ‘sane and reasonable’ side of the world appreciates and even humors the new Gillette commercial.

Gillette CommercialGilletteAdGillette AdGillette CommercialGillette commercialGillette commercial
The backlash shows that the progress has been less linear than they would like, but it reveals a lot of faces that are insecure about their gender.

And that, with forwarding movement comes to those reactionaries who dig in their heels.

Humbled to say that I'm the most fun and lively character of our #ChampFam, designated as Senior Content Writer. I've five years of experience in content creation. Digital marketing enthusiast and horror movie addict. When not busy creating masterpieces with my words, I daydream about dragons, unicorns, and soup!

1 comment

Leave your comment

<script>
document.addEventListener('DOMContentLoaded', function() {
    function transformTablesForMobile() {
        if (window.innerWidth > 767) return; // Only for mobile
        
        const tables = document.querySelectorAll('#brxe-kpxjkv table');
        
        tables.forEach(table => {
            if (table.classList.contains('transformed')) return;
            
            let headers = [];
            const thead = table.querySelector('thead');
            const tbody = table.querySelector('tbody');
            
            // Get headers - check for both th and td in thead
            if (thead) {
                const headerRow = thead.querySelector('tr');
                if (headerRow) {
                    // First try th, then td
                    let headerCells = headerRow.querySelectorAll('th');
                    if (headerCells.length === 0) {
                        headerCells = headerRow.querySelectorAll('td');
                    }
                    headers = Array.from(headerCells).map(cell => cell.textContent.trim());
                }
            } else if (tbody) {
                // If no thead, take first row
                const firstRow = tbody.querySelector('tr');
                if (firstRow) {
                    let headerCells = firstRow.querySelectorAll('th');
                    if (headerCells.length === 0) {
                        headerCells = firstRow.querySelectorAll('td');
                    }
                    headers = Array.from(headerCells).map(cell => cell.textContent.trim());
                }
            }
            
            // Return if no headers found
            if (headers.length === 0) return;
            
            // Get all data rows
            const rows = Array.from(tbody.querySelectorAll('tr'));
            const dataRows = rows; // All tbody rows are data rows when thead exists
            
            // Create new structure
            const newContainer = document.createElement('div');
            newContainer.className = 'mobile-table-container';
            
            // Create a section for each column
            headers.forEach((header, colIndex) => {
                const columnSection = document.createElement('div');
                columnSection.className = 'mobile-column-section';
                
                const columnHeader = document.createElement('div');
                columnHeader.className = 'mobile-column-header';
                columnHeader.innerHTML = header; // Use innerHTML to preserve formatting
                columnSection.appendChild(columnHeader);
                
                const columnList = document.createElement('div');
                columnList.className = 'mobile-column-list';
                
                dataRows.forEach(row => {
                    const cells = row.querySelectorAll('td');
                    if (cells[colIndex]) {
                        const item = document.createElement('div');
                        item.className = 'mobile-column-item';
                        item.innerHTML = cells[colIndex].innerHTML;
                        columnList.appendChild(item);
                    }
                });
                
                columnSection.appendChild(columnList);
                newContainer.appendChild(columnSection);
            });
            
            table.style.display = 'none';
            table.classList.add('transformed');
            table.parentNode.insertBefore(newContainer, table.nextSibling);
        });
    }
    
    transformTablesForMobile();
    
    // Handle window resize
    let resizeTimer;
    window.addEventListener('resize', function() {
        clearTimeout(resizeTimer);
        resizeTimer = setTimeout(function() {
            const containers = document.querySelectorAll('.mobile-table-container');
            const tables = document.querySelectorAll('#brxe-kpxjkv table.transformed');
            
            if (window.innerWidth > 767) {
                containers.forEach(c => c.style.display = 'none');
                tables.forEach(t => t.style.display = 'table');
            } else {
                containers.forEach(c => c.style.display = 'block');
                tables.forEach(t => t.style.display = 'none');
            }
        }, 250);
    });
});
</script>
/* Sticky header for tables WITH thead */
#brxe-kpxjkv table thead {
    background-color: #f0ebf8;
    position: sticky;
    top: 0;
    z-index: 2;
}

#brxe-kpxjkv table thead th {
    background-color: #f0ebf8;
    position: sticky;
    top: 0;
}

/* Sticky header for tables WITHOUT thead (first row only) */
#brxe-kpxjkv table:not(:has(thead)) tbody tr:first-child {
    background-color: #f0ebf8;
    position: sticky;
    top: 0;
    z-index: 2;
}

#brxe-kpxjkv table:not(:has(thead)) tbody tr:first-child td,
#brxe-kpxjkv table:not(:has(thead)) tbody tr:first-child th {
    background-color: #f0ebf8;
    position: sticky;
    top: 0;
}


/* Mobile Column Layout */
@media (max-width: 767px) {
  #brxe-kpxjkv table{
    max-height:2000px;
  }
    .mobile-table-container {
        display: block;
        margin: 20px 0;
      border-radius: 12px;
      overflow: hidden;
    }
    
    .mobile-column-section {
        border: 1px solid #E0E0E0;
        overflow: hidden;
        background: white;
    }
    
    .mobile-column-header {
        background-color: #E3DFF5;
        padding: 15px;
        font-weight: bold;
        font-size: 16px;
        color: #333;
    }
    
    .mobile-column-list {
        padding: 0;
    }
    
    .mobile-column-item {
        padding: 15px;
        border-bottom: 1px solid #F0F0F0;
        background: white;
        font-size: 16px;
        line-height: 1.6;
    }
    
    .mobile-column-item:last-child {
        border-bottom: none;
    }
    
    .mobile-column-item:nth-child(odd) {
        background-color: #F7F6FC;
    }
    
    .mobile-column-item:nth-child(even) {
        background-color: #FAFAFA;
    }
    
    .mobile-column-item strong {
        color: #333;
        font-weight: 600;
    }
}

A Simplified Social Media Management Tool

Social Champ is your AI-powered social media management tool.

Schedule, analyze, listen, and track competitors – all in one platform.

Try now, Start free
No credit card required!
Related Blogs
My 9 Productivity Tools That Somehow Escaped the Digital Graveyard
Aug 11, 2026
I’ve a graveyard folder in my laptop that I named “Abandoned Apps.” Right now, there are 40+ apps in that…
Top 12 Free & Low Cost Social Media Management Tools in 2026
Jul 28, 2026
This is the only guide you need to learn about your options for free and low-cost social media management tools…
The Cringe Audit: 5 Brand Behaviors to Retire in 2026
Apr 13, 2026
We've officially entered an era where consumers don't just buy products; they vibe-check the entities behind them. It’s 2026, and…
Wait, before you go...👋

Don't let your Social Growth stop here.

Get 14 days of Social Champ Pro - Completely free!
Schedule unlimited posts, analyze performance, and manage all your social media from one place.

Unlimited
Scheduling

In-Depth
Analytics

Manage Multiple
Accounts

Start My 14-Day Free Trial

No credit card required

Cancel anytime

Easy setup

Loved by 10,000+ marketers and businesses

Secure & Reliable

#1 Rated Social Media Management Tool