From Wiki96
Jump to: navigation, search
m (Reverted edits by 94.233.241.205 (talk) to last revision by Kelbaz)
Tag: Rollback
 
(4 intermediate revisions by 3 users not shown)
Line 1: Line 1:
# Open File Explorer and go to '''<code>C:/system/boot</code>'''
This tutorial will teach you the basics of CSS tweaking for Windows 96. Be aware that this is not a tutorial on [[theming]].
# Make a file ending with <code>.css</code>
 
# In the file type <br/><code>.start_button:after {<br/>&nbsp;&nbsp;content: "Your text here";<br/>}</code>
{{DISPLAYTITLE:TUT:How to change the start button text}}
# Save the file
#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)''
# And reboot Windows 96
#Create a file ending with <code>.css</code>. ''CSS files are stylesheets, they can modify the style of the page.''
# '''Done!'''
#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">
.start_button:after {
    content: "Your text here";
}
</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]]

Latest revision as of 18:37, 16 May 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.