<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Edit websites Archives | Edit: the Chrome extension to edit any webpage, no code required</title>
	<atom:link href="https://goedit.me/category/edit-website/feed/" rel="self" type="application/rss+xml" />
	<link></link>
	<description>Tips, resources and tutorials to hone your copywriting skills and perfect your marketing craft.</description>
	<lastBuildDate>Sat, 11 Jul 2020 15:05:25 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	<generator>https://wordpress.org/?v=6.0.1</generator>

<image>
	<url>https://goedit.me/wp-content/uploads/2020/10/cropped-edit-icon-round-32x32.png</url>
	<title>Edit websites Archives | Edit: the Chrome extension to edit any webpage, no code required</title>
	<link></link>
	<width>32</width>
	<height>32</height>
</image> 
	<item>
		<title>How to edit a website – even if it&#8217;s not yours!</title>
		<link>https://goedit.me/edit-website/how-to-edit-a-website/</link>
					<comments>https://goedit.me/edit-website/how-to-edit-a-website/#respond</comments>
		
		<dc:creator><![CDATA[edit]]></dc:creator>
		<pubDate>Sat, 27 Jun 2020 14:32:34 +0000</pubDate>
				<category><![CDATA[Edit websites]]></category>
		<guid isPermaLink="false">https://goedit.me/?p=24</guid>

					<description><![CDATA[<p>It happens to us all the time. You&#8217;re browsing the web and you encounter a great website that fills you with inspiration. Maybe it&#8217;s one of your competitors&#8217; site, or maybe it&#8217;s even a completely unrelated website – but whatever the case, you feel there&#8217;s something to it when you see it. Something you wish [&#8230;]</p>
<p>The post <a rel="nofollow" href="https://goedit.me/edit-website/how-to-edit-a-website/">How to edit a website – even if it&#8217;s not yours!</a> appeared first on <a rel="nofollow" href="https://goedit.me">Edit: the Chrome extension to edit any webpage, no code required</a>.</p>
]]></description>
										<content:encoded><![CDATA[
<p>It happens to us all the time.</p>



<p>You&#8217;re browsing the web and you encounter a great website that fills you with inspiration.</p>



<p>Maybe it&#8217;s one of your competitors&#8217; site, or maybe it&#8217;s even a completely unrelated website – but whatever the case, you feel there&#8217;s something to it when you see it. Something you wish you could bring back to your project, or, at least, something you could tell your developer(s) to implement in your own webpage.</p>



<p>But it&#8217;s <em>their</em> website, not <em>yours</em>, and you can&#8217;t even preview how would it look if it talked about your project instead of theirs. Or can you?</p>



<p>Take Mailchimp, for example. This is their website:</p>



<figure class="wp-block-image size-large"><img width="1024" height="518" src="https://goedit.me/wp-content/uploads/2020/07/mailchimp-website-1024x518.png" alt="" class="wp-image-57" srcset="https://goedit.me/wp-content/uploads/2020/07/mailchimp-website-1024x518.png 1024w, https://goedit.me/wp-content/uploads/2020/07/mailchimp-website-300x152.png 300w, https://goedit.me/wp-content/uploads/2020/07/mailchimp-website-768x389.png 768w, https://goedit.me/wp-content/uploads/2020/07/mailchimp-website-1536x777.png 1536w, https://goedit.me/wp-content/uploads/2020/07/mailchimp-website-2048x1036.png 2048w, https://goedit.me/wp-content/uploads/2020/07/mailchimp-website-1200x607.png 1200w" sizes="(max-width: 1024px) 100vw, 1024px" /></figure>



<p>Say you liked their website and would love to test ideas right on it to take inspiration for your project. Wouldn&#8217;t it be awesome if you could just edit it?</p>



<figure class="wp-block-video"><video controls src="https://goedit.me/wp-content/uploads/2020/07/Screen-Recording-2020-07-07-at-4.41.58-PM.mp4"></video></figure>



<p>Today we&#8217;re going to learn to do exactly this: take a website, no matter who owns it, and edit it to preview significant changes (texts, images, elements&#8230;)</p>



<p>There are different methods to achieve this. The first two ones require some coding knowledge and are limited, but free – the last one is a one-click solution that will handle everything for you without even seeing a single line of code.</p>



<h2>Method 1: turn <em>contenteditable</em> on</h2>



<p>One of the most popular methods out there is turning on <em>contenteditable</em>, a browser feature that activates the editable mode in text fields across a page. This method only allows you to change texts – but nothing more than that. You will not be able to edit a website to delete elements, change images or styles.</p>



<p>To perform this method, you need to:</p>



<ol><li>Right click on any spot in the website, select &#8220;Inspect Element&#8221;</li><li>In the window or pane that shows up, locate the JavaScript console</li><li>Copy and paste the following code into the JavaScript console:<br><strong><strong>document.body.contentEditable = &#8216;true&#8217;;</strong></strong></li><li>Press Enter</li></ol>



<p>Now if you select a text field you&#8217;ll be able to write over it, instead of just selecting the text.</p>



<p>Pros:</p>



<ul><li>It&#8217;s free</li></ul>



<p>Cons:</p>



<ul><li>Requires some technical knowledge</li><li>Words tend to appear as misspelled with a squiggly red line underneath, killing the user experience and look and feel</li><li>Doesn&#8217;t handle image changes</li><li>Can&#8217;t delete elements</li><li>You can&#8217;t edit links or buttons</li><li>You may accidentally lose all your changes if you mistakenly exit the website</li></ul>



<h2>Method 2: use this code bookmarklet</h2>



<p>This method is just a more convenient way of performing the last method. What we&#8217;re going to do is create a bookmark that encapsulates the necessary JavaScript code to turn <em>contenteditable</em> on but it&#8217;s more convenient because it&#8217;s accessible right from a bookmark in the bookmark bar, without having to copy and paste the code every single time.</p>



<p>However, you still won&#8217;t be able to edit pictures, delete elements, change styles, etc. This will only be solved with the third method.</p>



<p>To create the bookmarklet, highlight the text below:</p>



<p class="has-text-align-center"><strong>javascript:document.body.contentEditable = &#8216;true&#8217;; document.designMode=&#8217;on&#8217;; void 0</strong></p>



<p>And then drag and drop it into the bookmarks bar of your browser. To use it, click the bookmark.</p>



<p>Pros:</p>



<ul><li>It&#8217;s more convenient than writing the <em>contenteditable</em> code every time</li></ul>



<p>Cons:</p>



<ul><li>Doesn&#8217;t fix any of the problems the previous method had</li><li>You can&#8217;t turn the contenteditable mode off for the page unless you reload it, making the edited page unusable until you reload and lose your changes.</li></ul>



<h2>Method 3: use this one-click Chrome extension</h2>



<p>Making quick edits to a website often requires a big range of functionalities that are not limited exclusively to changing text. This is why this Chrome extension exists, to take the methods above to the next level and empower digital professionals with the right tools to make quick edits to a website without depending on a technical partner.</p>



<p>This Chrome extension it&#8217;s called <a href="https://goedit.me">Edit</a>, and you just need to install it and click its icon to turn the current website instantly editable:</p>



<figure class="wp-block-embed-youtube wp-block-embed is-type-video is-provider-youtube wp-embed-aspect-16-9 wp-has-aspect-ratio"><div class="wp-block-embed__wrapper">
<iframe loading="lazy" title="Edit - Chrome Extension that turns websites editable" width="500" height="281" src="https://www.youtube.com/embed/xveqoLp8lAo?feature=oembed" frameborder="0" allow="accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture" allowfullscreen></iframe>
</div></figure>



<p>It sells for $15, and you can check it out here:</p>



<div class="cta-button cta-button-sm mt-4 text-center">
	
		<button data-rameerez-purchase-button="true" class="btn btn-cta my-3 my-md-0">
Buy Edit now
	</button>
	
</div>



<p>Pros:</p>



<ul><li>Extremely convenient, just one click</li><li>No need to have any programming or technical knowledge – or see a single line of code</li><li>Allows you to delete elements altogether</li><li>Allows you to change styles</li><li>Allows you to change images as well as texts</li><li>Doesn&#8217;t alter the user experience</li><li>Prevents you from exiting the website in the middle of an edit</li></ul>



<p>Cons:</p>



<ul><li>It&#8217;s a paid app, but if you use this on a daily basis it&#8217;s well worth it and will save you lots of time.</li></ul>



<h2>Conclusion</h2>



<p>There are a few different methods that allow you to turn any website editable, but some are very inconvenient and limited for a professional use (need coding knowledge, can&#8217;t edit images, can&#8217;t delete elements, can&#8217;t edit links or buttons&#8230;); while others, like the <a href="https://goedit.me">Edit Chrome extension</a>, are a convenient, one-click solution that add a lot of features to just being able to edit texts.</p>
<p>The post <a rel="nofollow" href="https://goedit.me/edit-website/how-to-edit-a-website/">How to edit a website – even if it&#8217;s not yours!</a> appeared first on <a rel="nofollow" href="https://goedit.me">Edit: the Chrome extension to edit any webpage, no code required</a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://goedit.me/edit-website/how-to-edit-a-website/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		<enclosure url="https://goedit.me/wp-content/uploads/2020/07/Screen-Recording-2020-07-07-at-4.41.58-PM.mp4" length="935424" type="video/mp4" />

			</item>
	</channel>
</rss>
