I hate doing a web search to only find a generic looking 404 not found page. Well, this code will work on any portal that handles HTML pages, looks good and at the same time no broken or missing pages.
Create an HTML page and name it "404 Not Found".
Add this code to it:
<div class="container404">
<img src="https://www.idesignsmf.com/images/404.jpg" alt="Page Not Found">
<div class="centered">
<p>Wow you found it!! I've been looking for this page since i created it in 2009. Sadly, even though you found this page, I seem to have also misplaced the page you were looking for.</p>
</div>
</div>
<script type="text/javascript" src="http://linkhelp.clients.google.com/tbproxy/lh/wm/fixurl.js"></script>
<script type="text/javascript">
var GOOG_FIXURL_LANG = 'en';
var GOOG_FIXURL_SITE = 'https://www.idesignsmf.com'
</script>
The CSS:
.container404 {
position: relative;
text-align: center;
color: #333;
}
.container404 p {
font-size: 16px
}
.centered {
position: absolute;
top: 70%;
left: 50%;
transform: translate(-50%, -50%);
}
Replace all URL's, images and text with your own ;)
Open your .htaccess file and add:
ErrorDocument 404 https://www.idesignsmf.com/index.php/page,page4822.html
Replace the link with the link of your own 404 not found page.