Frequently Asked Questions
Don't see your question answered here? Contact me on Discord - my username is SKCro
.
General
What exactly is this project? What are its goals?
What encouraged you to create this?
Back when I started this project, it was known as "WebTV-CSS-Remake" (rolls right off the tongue, I know) and was only targetting Samsung Smart TVs (particularly the one in my living room).
When others in the WebTV Discord noticed my work, they encouraged me to open up a GitHub repo. From there, the project became a full-on website theme, and now, what is basically a front-end concept.
This looks awesome! Can I use this code for my own project?
Can I translate this project into another language?
Did you use a JS library of some kind to make this?
Functionality and code
What kind of box does WebTV HD try to replicate?
How do I go to TV Home?
Are there any known issues with this project?
What happened to the save button?
What about the Favorites page? Can't you save pages there?
- There's no backend to handle storage of favorites. Cookies/Local Storage can't be used either since those are too volatile.
- I can't read the URL, favicon, or content of cross-origin pages - any page that isn't a part of WebTV HD is cross-origin, so this defeats the entire purpose of the feature.
What settings can I change?
Why doesn't (x feature) work right?
Why can't I send mail, edit favorites, or change settings?
Examples of features that require a backend:
- Accounts - this would require both an authentication server and a database server.
- Mail - this would obviously require an email server.
- Page Builder - this would require a backend HTTP server.
- Settings - this would require a database server to store the settings. (Note that everything on the Other settings page are exceptions - I used cookies since it was simple enough)
Can't you just make a backend?
GitHub Pages also doesn't support server-side languages like PHP, meaning I can't sidestep the requirement for a dedicated server.
As a reminder, I am only a teenager and I simply don't have the time or skill to do all that. I work on this for fun - I'm not planning to make it a fully-featured WebTV replacement.
Design and Styling
What fonts does WebTV HD use?
-
General fonts:
- Helvetica* - General font. Used for pretty much everything, from UI to pages.
Monaco - Monospace font. Used for input fields.
- Bodoni - Logo font. Used for the "webtv" text on the logo. Example:
- Bank Gothic** - Logo font. Used for the "PLUS"/"NETWORKS" text on some variations of the WebTV logo. Example:
The "HD" text uses Bank Gothic. This isn't an official example, but I guess it counts for now.
Other fonts:
**This may not be accurate, but Bank Gothic was the closest match we could find.
What colors does WebTV HD use?
style.css
.Why is (x element) inaccurate?
Advanced/Other
How do I show alert dialogs?
javascript:alert('Your text here')
into the go to panel. Make sure you don't forget the parentheses between the text.
To create a
showAlert
dialog (one that uses the WebTV logo rather than the warning triangle), use javascript:showAlert('Your text here')
instead. You can use HTML and CSS (via <style>
) in your alert text.
If you're into advanced customization, you can use
showCustomAlert()
instead.It takes 4 arguments: text content (which can include HTML), a custom alert image, a custom button label, and a snippet of JavaScript to execute after the button is clicked.
Use the string
none
if you don't want to specify a certain attribute (in which case the default will be used). Example usage:javascript:showCustomAlert('<h1>beans</h1>','https://www.recipetineats.com/wp-content/uploads/2014/05/Homemade-Heinz-Baked-Beans_0-SQ.jpg','beans','none')
I noticed that I can't use WebTV HD by opening index.html directly from disk. Why?
Why do you suck at coding?
Terms and Jargon
What are HTML, CSS, and JS?
HTML
, short for Hyper-Text Markup Language, is the base structure of a website. Think of it like the foundation and walls of a house.CSS
, short for Cascading Style Sheets, is used for styling a website. Think of it like the coat of paint and furniture arrangement of a house.JS
, short for JavaScript, is the main programming language of the internet. Think of it like the actions that happen inside of a house.
What's an "iframe"?
iframe
, pronounced eye-frame and short for inline frame, is an HTML element that allows embedding of another page or website. WebTV HD uses an iframe to embed other pages, like the one you're reading right now! Most popular websites prevent themselves from being embedded for security reasons, which is why some sites doesn't work in WebTV HD. See below for details.What does "cross-origin" mean and why does it prevent so many features from working as expected?
cross-origin
is usually used to refer to pages that aren't a part of WebTV HD (ie. external websites). It's called that because the page isn't from the same origin (the origin, in this case, being WebTV HD).Cross-origin restrictions are a security measure put in place by your web browser to prevent a malicious site from, say, embedding your bank website in an iframe, tricking you into logging in, and stealing your login data through the iframe. The page with the iframe on it (the parent page) cannot access what's in the iframe if its contents aren't from the same place. These restrictions prevent WebTV HD from easily reading details like the page name or modifying things on the page, such as the selection box or sidebar.
What are classes and IDs?
class
es are sort of like common nicknames that can be attached to multiple elements. ID
s are meant to identify one element in particular. Classes are often used for CSS styling, while IDs are often used for scripting purposes.