Log in | Register






Skip to main content


Menu

Recent Topics

pc
Bios Settings Shortcut
by Burke Knight
in Tips & Tricks
March 06, 2024, 04:09:10 PM
Views: 282 | Replies: 0
lamp
The Never-Ending Always-Changing Off-Topic Thread
by Burke Knight
in General Discussion
February 03, 2024, 09:46:30 AM
Views: 8958 | Replies: 19
xx
Member Purge
by Burke Knight
in News & Announcements
January 10, 2024, 09:44:04 AM
Views: 1036 | Replies: 0
xx
New Gallery
by Burke Knight
in News & Announcements
January 09, 2024, 07:50:23 PM
Views: 1132 | Replies: 0
xx
Non Compressed Submissions - Reply to Submit
by Burke Knight
in Web Site Images
January 02, 2024, 10:08:22 AM
Views: 3708 | Replies: 6
img
GTA V - Screenshots
by Burke Knight
in BK-GTA - Grand Theft Auto
December 27, 2023, 07:53:25 PM
Views: 739 | Replies: 2
check
Checking In!
by Burke Knight
in General Discussion
December 15, 2023, 07:08:09 AM
Views: 1961 | Replies: 7
clip
Sims 4 - Floors
by Burke Knight
in The Sims 4
December 12, 2023, 07:48:57 PM
Views: 1144 | Replies: 0
clip
Sims 4 - Walls
by Burke Knight
in The Sims 4
December 12, 2023, 07:37:37 PM
Views: 1000 | Replies: 0
clip
The Sims 4 - Avalon House
by Burke Knight
in The Sims 4
December 12, 2023, 07:14:20 PM
Views: 1021 | Replies: 0
video
GTA Online Cars
by Burke Knight
in BK-GTA - Grand Theft Auto
December 06, 2023, 08:46:15 PM
Views: 439 | Replies: 0
xx
Site Remake
by Burke Knight
in News & Announcements
November 25, 2023, 07:50:52 PM
Views: 1019 | Replies: 0
clip
The Realm Online - INFO For New Players
by Burke Knight
in Gamer's Haven
November 25, 2023, 07:14:22 PM
Views: 1516 | Replies: 5
img
GTA IV - Screenshots
by Burke Knight
in BK-GTA - Grand Theft Auto
November 25, 2023, 06:38:34 PM
Views: 396 | Replies: 0
img
GTA Vice City - Screenshots
by Burke Knight
in BK-GTA - Grand Theft Auto
November 25, 2023, 06:36:49 PM
Views: 382 | Replies: 0
img
GTA III - Screenshots
by Burke Knight
in BK-GTA - Grand Theft Auto
November 25, 2023, 06:34:33 PM
Views: 383 | Replies: 0
img
GTA San Andreas - Screenshots
by Burke Knight
in BK-GTA - Grand Theft Auto
November 25, 2023, 06:32:58 PM
Views: 378 | Replies: 0
xx
Grand Theft Auto Games
by Burke Knight
in BK-GTA - Grand Theft Auto
November 25, 2023, 06:29:44 PM
Views: 395 | Replies: 0
video
Grand Theft Auto V - Free Roam Fun #1
by Burke Knight
in BK-GTA - Grand Theft Auto
November 25, 2023, 06:26:32 PM
Views: 376 | Replies: 0
video
GTA IV - Eating With Friends
by Burke Knight
in BK-GTA - Grand Theft Auto
November 25, 2023, 06:24:54 PM
Views: 368 | Replies: 0
video
GTA IV - Bellic Cousins Rule the Streets
by Burke Knight
in BK-GTA - Grand Theft Auto
November 25, 2023, 06:24:17 PM
Views: 390 | Replies: 0
video
GTA IV - KITT vs Liberty City
by Burke Knight
in BK-GTA - Grand Theft Auto
November 25, 2023, 06:23:25 PM
Views: 446 | Replies: 2
video
GTA IV - Police Chase
by Burke Knight
in BK-GTA - Grand Theft Auto
November 25, 2023, 06:22:06 PM
Views: 383 | Replies: 0
video
GTA IV - Roman Bellic Takes The Wheel
by Burke Knight
in BK-GTA - Grand Theft Auto
November 25, 2023, 06:20:55 PM
Views: 377 | Replies: 0

Who's Online

  • Guests: 14
  • Hidden: 0

There aren't any users online.
  • Online Today: 1

Site Stats

  • Total Members: 6
  • Total Posts: 261
  • Total Topics: 164
  • Total Categories: 3
  • Total Boards: 25
  • Most Online: 34

Site Staff

Burke Knight Burke Knight
Administrator
DeadMan DeadMan
Global Moderator
Free Web Hosting
Ultimate Web Hosting

  Thoughts, Comments & Suggestions.

This chatbox is used on all BurkeKnight Entertainment sites.
Please Follow The Rules! | Setting up ChatBox profile.


Recent Posts
51
Tips & Tricks / How to redirect to another URL
Last post by Burke Knight -
How to redirect to another URL:

The simplest way to redirect to another URL is to use an HTML <meta> tag with the http-equiv parameter set to “refresh”. The content attribute sets the delay before the browser redirects the user to the new web page. To redirect immediately, set this parameter to “0” seconds for the content attribute.

Code: [Select]
<meta http-equiv="Refresh" content="0; url='https://www.domain.tld'" />

53
Website Scripts / SpeedCheck Widget
Last post by Burke Knight -
This adds a SpeedCheck widget to your website.
You can adjust the css as you see fit.
How it is set now, allows it to show decently, like on the site here, in a 250px block.

Where want the SpeedCheck to show:

Code: [Select]
<div id="sc-container">
    <div id="sc-branding" class="sc-bb">
        <a target="_blank" href="https://www.speedcheck.org/">
            <img src="https://cdn.speedcheck.org/branding/speedcheck-logo-18.png" alt="Speedcheck"/>
        </a>
    </div>
</div>
<script src="https://cdn.speedcheck.org/basic/scbjs.min.js" async></script>


CSS File:

Code: [Select]
#sc-container {
        margin: 0 auto;
    width: 200px!important;
    max-width: 200px!important;
    height: 300px!important;
}
#sc-start-button, #sc-details-button {
    cursor: pointer;
    max-width: 200px!important;
}
#sc-results {
    width: auto!important;
    max-width: 200px!important;
}

54
Designing & Graphics / Display a different logo on mobile and desktop.
Last post by Burke Knight -
Code: (CSS) [Select]

  /* hide mobile version by default */
  .logo .mobile {
    display: none;
  }
  /* when screen is less than 500px wide
    show mobile version and hide desktop */
  @media (max-width: 500px) {
    .logo .mobile {
      display: block;
    }
    .logo .desktop {
      display: none;
    }
  }


Code: (HTML) [Select]
<div class="logo">
  <img src="/images/logo_desktop.png" class="desktop" />
  <img src="/images/logo_mobile.png" class="mobile" />
</div>

55
Tips & Tricks / Make site a PWA
Last post by Burke Knight -
This is a great way to make your website open in it's own window instead of opening up as a tab in Chrome for Android.

Another good thing about it, is that you can save the apk for it via your device's app drawer, and share the app.




Make site a PWA

Make a file in site root: manifest.json:

Code: [Select]
{
  "background_color": "navy",
  "description": "Site Description",
  "display": "standalone",
  "icons": [
    {
      "src": "images/app_logo.png",
      "sizes": "200x200",
      "type": "image/png"
    }
  ],
  "name": "Site name",
  "short_name": "App Name",
  "start_url": "https://www.domain.tld/"
}


Add to main index page: (Inside the <head> tag.)

Code: [Select]
<link rel="manifest" href="https://www.domain.tld/manifest.json" />

56
Laugh Lounge / Funny Cat Images
Last post by Burke Knight -
[attach id=484]FB_IMG_1678715345119.jpg[/attach]
[attach id=486]FB_IMG_1678495703375.jpg[/attach]
[attach id=488]FB_IMG_1665709925328.jpg[/attach]
[attach id=490]FB_IMG_1665614191694.jpg[/attach]