IE6 png fix - z-index and tiling issues Digital Media UI / UX Design by franko75 … I have a swf which should overlap the quicklinks directly below it. Instead, the quicklinks are pushed further down the page. This…see that underneath the What's On and Special Offers quicklinks near the bottom of the page, there is a slight… that I don't have this issue with the other quicklinks, e.g Weddings, Corporate etc. Hopefully this can be … Integrating a query to the design made by my classmate Programming Web Development by RonKevinT.Manuela …;/div><!-- col-md-4-offset-1--> <!-- Quicklinks --> <div class="col-sm-6">… Re: desktop won't load - HJT log & AVG reports included Hardware and Software Information Security by zRunner ….3 PS2 PSP Video 9 1.74 PSP WIFI Max Quicklinks QuickTime RealPlayer Realtek RTL8139/810x Fast Ethernet NIC Driver Setup… Re: desktop won't load - HJT log & AVG reports included Hardware and Software Information Security by zRunner ….3 PS2 PSP Video 9 1.74 PSP WIFI Max Quicklinks QuickTime RealPlayer Realtek RTL8139/810x Fast Ethernet NIC Driver Setup… Re: desktop won't load - HJT log & AVG reports included Hardware and Software Information Security by zRunner ….3 PS2 PSP Video 9 1.74 PSP WIFI Max Quicklinks QuickTime RealPlayer Realtek RTL8139/810x Fast Ethernet NIC Driver Setup… Re: Dynamic Login Programming Web Development by chrishea … but regardless, it doesn't sound too complex. 4. [B]Quicklinks[/B] In this case you need to store the history… Re: How do you transfer files using crossover cable? Hardware and Software Microsoft Windows by hotmatrixx … the ip settings of your device - start-network- (in the quicklinks near the top)- network and sharing center then on the… How to get Yahoo Quicklinks and bing Final Destination pages Digital Media Digital Marketing Search Engine Strategies by deecoup I had read somewhere that its not easy to get quick links for yahoo and the final destination page for Bing.........how to get it......... Thanks in Advance Waiting for reply Re: How to get Yahoo Quicklinks and bing Final Destination pages Digital Media Digital Marketing Search Engine Strategies by canadafred [QUOTE=deecoup;1426856]I had read somewhere that its not easy to get quick links for yahoo and the final destination page for Bing.........how to get it......... Thanks in Advance Waiting for reply[/QUOTE]... um, let me see ... offer both search engines the exact same content et voila!!? Re: IE6 png fix - z-index and tiling issues Digital Media UI / UX Design by peter_budo If you did found solution, would you mind to share it with community? In doing so you may help somebody with similar problem in the future... Re: IE6 png fix - z-index and tiling issues Digital Media UI / UX Design by wickedsunny hey for the swfs in ur html code find the paramaters code and add a parameter of wmode=transparent. or simply open in dreamweaver click your swf and from the parameters in properters ad a new one. name is wmode and value is transparent. problem fixed. regards Re: IE6 png fix - z-index and tiling issues Digital Media UI / UX Design by franko75 [QUOTE=peter_budo;834821]If you did found solution, would you mind to share it with community? In doing so you may help somebody with similar problem in the future...[/QUOTE] Yeah I would normally post the solution, on this occasion the tiling issue just disappeared, so i have no idea what was happening there! The other issue was just a simple… Re: IE6 png fix - z-index and tiling issues Digital Media UI / UX Design by MidiMagic Z index is not implemented correctly in IE 6. It is buggy. Re: Integrating a query to the design made by my classmate Programming Web Development by mattster Well it's nice to see someone using OOP for a change in the paginator class. Try to keep to this good habit aha. Simply put the while loop inside your code where you want the loop. while($row = $stmt->fetch()){ echo '<div>'; ... } If you're on about inproving the PHP while you're here, take a look at [this](https://… Re: Integrating a query to the design made by my classmate Programming Web Development by RonKevinT.Manuela sir, i was trying to run that code but it gives me Parse error: syntax error, unexpected '$output' (T_VARIABLE) in C:\wamp\www\SICS\home.php on line 193 <?php $output = '<div class="panel-group" id="accordion">'; $stmt = $db->query('SELECT postID, postTitle, postURL, … Re: Integrating a query to the design made by my classmate Programming Web Development by mattster Use the following code, I missed a `;` on line 23 above. $output = '<div class="panel-group" id="accordion">'; $stmt = $db->query('SELECT postID, postTitle, postURL, postDesc, postDate FROM posts ORDER BY postDate DESC'); while($row = $stmt->fetch()){ $output .= '<div class="panel … Re: Integrating a query to the design made by my classmate Programming Web Development by RonKevinT.Manuela thanks a lot sir! learned something new again