SeaSurf for Windows doesn’t always render pages as well as it could. However, you can fix this problem easily. You will need: You will need to know where the SeaSurfForWindows.exe is stored (eg, C:\Users\yourusername\Desktop\SeaSurfForWindows.exe) Open Cortana or press Windows Key + R and type regedit and press enter. Navigate to Computer\HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Internet Explorer\Main\FeatureControl\FEATURE_BROWSER_EMULATION and add a newContinue reading “GUIDE: Fix Rendering Problems in SeaSurf for Windows”
Tag Archives: browser
Python, GTK and WebKit – creating a web browser – Part 3
Hey guys! Welcome to Part 3 of my Python, GTK and WebKit – creating a web browser tutorial. Part 3 will show you how to add an “About” button to the browser. The about dialog will look like: Add the following few lines to the beginning of the code: import Tkinter from ScrolledText import * importContinue reading “Python, GTK and WebKit – creating a web browser – Part 3”
Python, GTK and WebKit – creating a web browser – Part 1
THIS WEB BROWSER IS NOT SEASURF. IT IS A VERY BASIC BUT RATHER FUNCTIONAL WEB BROWSER. Here is how to use Python, GTK and WebKit to create a very simple web browser. First, you will need Python and the GTK and WebKit modules installed. Here is the code for the basic web browser: #!/usr/bin/env pythonContinue reading “Python, GTK and WebKit – creating a web browser – Part 1”