- In the extension bar, click the AdBlock Plus icon
- Click the large blue toggle for this website
- Click refresh
- In the extension bar, click the AdBlock icon
- Under "Pause on this site" click "Always"
- In the extension bar, click on the Adguard icon
- Click on the large green toggle for this website
- In the extension bar, click on the Ad Remover icon
- Click "Disable on This Website"
- In the extension bar, click on the orange lion icon
- Click the toggle on the top right, shifting from "Up" to "Down"
- In the extension bar, click on the Ghostery icon
- Click the "Anti-Tracking" shield so it says "Off"
- Click the "Ad-Blocking" stop sign so it says "Off"
- Refresh the page
- In the extension bar, click on the uBlock Origin icon
- Click on the big, blue power button
- Refresh the page
- In the extension bar, click on the uBlock icon
- Click on the big, blue power button
- Refresh the page
- In the extension bar, click on the UltraBlock icon
- Check the "Disable UltraBlock" checkbox
- Please disable your Ad Blocker
- Disable any DNS blocking tools such as AdGuardDNS or NextDNS
- Disable any privacy or tracking protection extensions such as Firefox Enhanced Tracking Protection or DuckDuckGo Privacy.
If the prompt is still appearing, please disable any tools or services you are using that block internet ads (e.g. DNS Servers, tracking protection or privacy extensions).
Question
Linkin_cs
I've written a tutorial for neowinians on how to create a theme-supported website in PHP:
? This guide will teach you how to quickly develop a theme supported website.
? This guide will teach you how to quickly create hundreds of themes within minutes.
? Itnot t teach you how to make a complex template based website such as drupal.
You need:
? PHP with Apache
? Adobe Photoshop
? Text editor, I prefer InType (freeware,for now anyway)
The idea is that there will a file called ?gui.php? which will contain two functions:
Makeheader($title) //This function will create the top part of the web page, and adding a title
Makefooter () //This will create the bottom part of the web page
Then include the gui.php in any php file you would like to ?theme? e.g.
? Index.php file content:
<? include( 'gui.php' ); makeheader("Home"); echo "Welcome"; makefooter(); ?>
Pretty simple isn?t it?
Now let?s create the basic elements of the header and footer.
Start new photoshop file, as shown.
Select the rounded rectangle tool
Select a style
Draw the header
Draw the footer
You now have a header and footer, try aligning them and make sure they have the same width for consistency.
Select the slice tool
Slice the left corner and a small part of the center (the center part will repeat itself in the browser)
Slice the right corner
Do the same for the footer part.
We will now export the 6 images into a folder called images, inside the theme folder (fresh_orange)
Rename the images for simplicity
Now back to gui.php, the file simply contains two functions, one to make a header and another to make the footer:
Now to make any file themed, simply include gui.php and call the two functions e.g.:
Our index.php file will look like:
<? include( 'gui.php' ); makeheader("Home"); print <<<end <br /><br /><br /> <div align="center">Welcome to my website</div> <br /><br /><br /> end; makefooter(); ?>
Your website will look like this:
Now lets see how easy it is to create more themes:
Back to photoshop:
Highlight the header and footer layers, and simply choose a style from your list.
Another great looking style
And more, easy to make as few clicks.
After selecting a style, simply do the process again, make a new folder and add the images in the correct path..etc
Tutorial php and photoshop files
Things you can do:
Web 2.0 styles, free,huge and great collection.
http://www.dezinerfolio.com/2007/05/06/ult...0-layer-styles/
Edited by Linkin_csLink to comment
https://www.neowin.net/forum/topic/605621-website-themeskinning-tutorial/Share on other sites
2 answers to this question
Recommended Posts