From Wiki96
Jump to: navigation, search
(Updated the tutorial)
Line 1: Line 1:
This tutorial will teach you the basics of CSS tweaking for Windows 96. Be aware that this is not a tutorial on [[theming]].
{{DISPLAYTITLE:TUT:How to change the start button text}}
{{DISPLAYTITLE:TUT:How to change the start button text}}
# Open File Explorer and go to '''<code>C:/system/boot</code>'''
#Firstly, open a File Explorer and navigate to <code>C:/system/boot</code>. This directory will execute every compatible files on boot. ''(Please refer to [[File System Structure|this page]] for the File System Structure)''
# Make a file ending with <code>.css</code>
#Create a file ending with <code>.css</code>. ''CSS files are stylesheets, they can modify the style of the page.''
# In the file type <br/><code>.start_button:after {<br/>&nbsp;&nbsp;content: "Your text here";<br/>}</code>
#Then, open the file in Monaco or another editor and type the following code and change <code>Your text here</code> by anything you want.<syntaxhighlight lang="css" line="1">
# Save the file
.start_button:after {
# And reboot Windows 96
    content: "Your text here";
# '''Done!'''
}
</syntaxhighlight>''This following code change the start button text to <code>Your text here</code>''.
#You can now save the file and reboot Windows 96 to see changes.
This is how to change the start button text. CSS files can change other aspect of the page like the color of some elements or their sizes.
[[Category:Tutorials]]
[[Category:Tutorials]]

Revision as of 13:15, 20 March 2023

This tutorial will teach you the basics of CSS tweaking for Windows 96. Be aware that this is not a tutorial on theming.


  1. Firstly, open a File Explorer and navigate to C:/system/boot. This directory will execute every compatible files on boot. (Please refer to this page for the File System Structure)
  2. Create a file ending with .css. CSS files are stylesheets, they can modify the style of the page.
  3. Then, open the file in Monaco or another editor and type the following code and change Your text here by anything you want.
    .start_button:after {
        content: "Your text here";
    }
    
    This following code change the start button text to Your text here.
  4. You can now save the file and reboot Windows 96 to see changes.

This is how to change the start button text. CSS files can change other aspect of the page like the color of some elements or their sizes.