Skip to content
View in the app

A better way to browse. Learn more.

Web Designer Forum

A full-screen app on your home screen with push notifications, badges and more.

To install this app on iOS and iPadOS
  1. Tap the Share icon in Safari
  2. Scroll the menu and tap Add to Home Screen.
  3. Tap Add in the top-right corner.
To install this app on Android
  1. Tap the 3-dot menu (⋮) in the top-right corner of the browser.
  2. Tap Add to Home screen or Install app.
  3. Confirm by tapping Install.

berty bassett

Members
  • Joined

  • Last visited

Everything posted by berty bassett

  1. whats baffling me is why it won't display if its saved in the image
  2. Hi, yeah appreciate that, maybe i haven't explained properly. Its a standard fancybox not lightbox gallery with overlay. I wanted to display the images with a custom frame that i added in Photoshop and remove the white border that is used by fancybox. I've removed the border but the frame that i added in Photoshop does not appear. Was just after knowing whether this is possible and if so how to achieve this. Cheers Tony
  3. Hi, I'm using Lightbox for an image gallery but rather thank just have the border i wanted to use a custom frame added to the image in Photoshop. But when i try this Lightbox still only dispalys just the image, why will it not show the custom frame around the image. I've looked through the css and js, i've removed the white border background but can't see how to make it show the custom frame added in Photoshop. Cheers Tony
  4. Hi, I'm considering creating a site in Wordpress which I know will have a number of visually impaired users. Is there a way in Worpress to allow the user to change the size of the text displayed? Cheers Tony
  5. Hi, I've tried IEtester and it keeps crashing. I will try the compatibility method. Cheers Tony
  6. Hi, Is it possible to have IE7 and IE8 installed on the same PC for testing sites. If so how cause everytime i try from various locations it won't install as theres a newer version already installed. Cheers Tony
  7. I see patsycannon85 has lent you the brain cell today
  8. are you trying to be funny
  9. Hi Finnan3, Script works a treat. Really appreciate your help. Cheers Tony
  10. Sorry, i had to dash away yesterday . . . brilliant i will give it a try today and let you know how i get on cheers Tony
  11. brilliant thanks for that. i'm presuming i can put this script at whichever location i want the random image to occur or if it has to go in the </head> it won't do what i need.
  12. Hi, I have a page (http://www.abimagery.co.uk/abimagery-galleries.html) where i want to have random images displayed for each different gallery. I've seen scripts that will do this for a single image location on the page but can't find anything that would solve my problem. Hope someone can help. Cheers Tony
  13. I'm not sure how the software does it, probably php like you say, the hardened copyright thief will always win but the majority of people will be thwarted.
  14. Hi Pat, yeah it would be a lot of work but good thought though, i really need a software approach with a batch process if possible. Hi Waynede, the windows software i've seen encrypts the code on the html page too so you can't view the source either.
  15. Hi All, Whats the best way to encrypt images on a website to prevent copy, download, right click, screen capture etc etc. I don't want to use a visible watermark. I've seen various software such as html lock, html guardian etc but i'm a Mac user and can't find anything for the Mac. Regards Tony
  16. Hi, I'm in the process of setting up a Coppermine Gallery to upload and play flv files. I just can't seem to find a straightforward instruction on how to do this. Any help anyone. Cheers Tony
  17. Hi, Can anyone recommend a script that can be added to an existing site that will allow users to upload images or video files to a folder that i specify so they can be cleared before putting on the site. Cheers Tony
  18. Hi, Can anyone recommend a chat script that can be added to an existing site. Cheers Tony
  19. Hi, Thats brilliant thank you
  20. Hi, I trying to create a download link so that a user can download an image at a click of the download button. I don't want to have a zip file of the image. Any ideas, Cheers Tony
  21. Hi, I had a problem where i wanted to have a warning pop up if the user was using IE6 to say there may be faults on the site as it wasn't designed around IE6, then they could choose to continue or exit to browser. Heres what i did: Created a Javascript File to direct IE6 users to the warning page "ie6warning.html: <!-- var browser = navigator.appName var ver = navigator.appVersion var thestart = parseFloat(ver.indexOf("MSIE"))+1 var brow_ver = parseFloat(ver.substring(thestart+4,thestart+7)) if ((browser=="Microsoft Internet Explorer") && (brow_ver < 7)) { window.location="/ie6warning.html"; } //--> Created a page to display the warning "ie6warning.html", style the warning box and called a jquery file for the overlay to work. <head> <script src="js/jquery.tools.min.js"></script> <style> #facebox {/* overlay is hidden before loading */ display:none; /* standard decorations */ width:400px; border:10px solid #666; margin:-200px 0 0 0;} #facebox div {padding:0px; font-family:"lucida grande",tahoma,verdana,arial,sans-serif;} #facebox h2 {margin:0px; margin-bottom:0px; color:#fff; background-color:#6D84B4; padding:10px 0; border:1px solid #3B5998; font-size:20px; text-align:center;} #facebox p {text-align:center; padding:0 10px; font-weight:bold;} #facebox a {color:#000; text-decoration:none; padding:10px; background-color:#eee;} #facebox a:hover {color:#fff; background-color:#06F;} #facebox table {width:50%; margin:0 auto 10px auto;} #facebox td {padding:10px;} </style> </head> <body> <div id="facebox"> <div> <h2>Internet Explorer 6 Warning</h2> <p>This website has not been designed to work with Internet Explorer 6.<br /> <br /> If you choose to continue be aware that the pages may not display as intended and may contain faults. </p> <p style="color:#666">Click Continue to load the homepage or Exit to return to the browser.</p> <table> <tr> <td><p><a href="http://www.younglinton.co.uk/index-ie.htm">Continue</a></p></td> <td><p><a href="http://www.google.com">Exit</a></p></td> </tr> </table> </div> </div> <script> // What is $(document).ready ? See: http://flowplayer.org/tools/using.html#document_ready $(document).ready(function() { // select the overlay element - and "make it an overlay" $("#facebox").overlay({ // custom top position top: 272, // some expose tweaks suitable for facebox-looking dialogs expose: { // you might also consider a "transparent" color for the mask color: '#fff', // load mask a little faster loadSpeed: 200, // highly transparent opacity: 0.5 }, // disable this for modal dialog-type of overlays closeOnClick: false, // we want to use the programming API api: true // load it immediately after the construction }).load(); }); </script> </body> You will see that the Continue link goes to a copy of the index page otherwise it will be a continuous loop between the warning and the homepage for IE6 user. Created the copy of the index.html page and call it something like index-ie6.html added the following javascript call in the index.html page: <script type="text/javascript" src="js/ie6warning.js"></script> I think i've covered everything, if anyone has a better idea i'd love to know as this took me ages to get working. I hope this is helpful to someone. Cheers Tony
  22. Hi Wickham, Thanks for that, Problem solved, i think. I adopted a slightly different approach, i've started a new topic about it in case it can be improved or would help anyone else. Cheers Tony
  23. Hi, I can't use any of these as i need the user to be able to click to continue loading the page in IE6. I know of company intranets that view sites i just want to warn them that the site wasn't designed to display in IE6 and they can then continue if they wish. Cheers Tony
  24. berty bassett posted a topic in Frontend
    Hi all, I want to add an IE6 warning pop up on the index page, so that if a user has IE6 the warning will pop up and they have to select continue to load the index page. I just can't get my head around it though, how can i do this. Cheers Tony

Account

Navigation

Search

Search

Configure browser push notifications

Chrome (Android)
  1. Tap the lock icon next to the address bar.
  2. Tap Permissions → Notifications.
  3. Adjust your preference.
Chrome (Desktop)
  1. Click the padlock icon in the address bar.
  2. Select Site settings.
  3. Find Notifications and adjust your preference.