- Upvotes Received
- 2
- Posts with Upvotes
- 2
- Upvoting Members
- 2
- Downvotes Received
- 0
- Posts with Downvotes
- 0
- Downvoting Members
- 0
35 Posted Topics
Hi: I've been banging my head over this all day... I'm attempting to create my first WordPress theme and have hit a wall trying to work with the "the_post_thumbnail()" function. In my theme, I'm using panels to navigate the site (rather than a top menu) and have them setup so … | |
Hi All: I have a challenging jQuery XML task I'm trying to accomplish as follows: I have an XML structure as follows: <nav_data> <outline> <links> <slidelink slideid="_player.6LjVRsWzPla" displaytext="Scene 1" expand="true"> <links> <slidelink slideid="_player.6LjVRsWzPla.6GWiXuWmXyn" displaytext="Fundamentals" expand="true" /> <slidelink slideid="_player.6LjVRsWzPla.6gxk7XqbaT8" displaytext="Closed Captioning Example" expand="true" /> <slidelink slideid="_player.6LjVRsWzPla.5rPNkwvz8u2" displaytext="Another Cationing Example" expand="true" /> … ![]() | |
Re: implainsite is on the right track. Set your menu css to a z-index that will ensure it stays on top of any and future content divs i.e. 1000, then set your content to a z-index lower, i.e. 10. z-index ONLY works when a position is declaired first, i.e. position:relative;float:left;z-index:1000; | |
Re: z-index only works for positioned elements such as position: relative etc... | |
Re: Hi: You wil need to change the footer css to the following: div#footer {bottom:0; color:#ffffff; float:none; fonat-family:Arial; font-size:17px; position:absolute; text-align:center; text-decoration:none; text-shadow:5px 3px 6px #000000; width:100%; z-index:1;} This will force the footer to the bottom all the time. If I may suggest, you should propbably look at all your CSS, … | |
Re: I have copied your code and placed it into a single html file (css in the head) and it works fine. When I hover over Link Menu, the LIs display, I can then hover over any of the 6 LIs and they remain displayed and selectable. Here is the working … | |
Hi All: I have 2 php files feeding one MySql record. I have an INSERT query in file1.php working fine, it then sends me to a highly animated form file2.php that calls a processor.php file. The processor.php file needs to update the mySql record. I have [U]tested[/U] the processor file … | |
Hi: I'm having an issue posting to MySQL using the animated_form.html below. My objective is to have 4 db entries posted to MySQL when the user clicks on the <a href="javascript: submitform()"><input alt="Show Results" id="btn_results" src="a_data/form_btn_show_results.png" type="image"></a> image. The form uses jquery and it produces 0 results in MySQL. Using … | |
Re: [QUOTE=qazplm114477;1336145]I was just really curious if this website [URL="http://www.webking.com/"]http://www.webking.com/[/URL] is for real or is it just a joke? There are even [URL="http://www.webking.com/computer-services/index.html"]testimonials [/URL]and stuff[/QUOTE] Wholy crap batman?!@#$%^& The guy even claims to be some kind of "product perfectionist" from birth. I suspect the gorilla that gave birth to him thought … | |
Hi: I'm trying to pass infromation from an input text field to a php script when the submit button is clicked. [B]Does anyone have a snippet of the AS2 and PHP that would achieve this?[/B] My overall objective to to query a single DB table with the information and I … ![]() | |
Re: In your CSS, make your... background-color: black; ...and have your... background-image: url(filename.type) top left repeat-x; | |
Hi: Can anyone point me to a flash "local site" search field capable of searching one MySQL DB table using PHP? I've been searching for a week and found Flash SEO search, Flash textfile search, etc. but nothing meeting my requirements. Thanks in advance, dennishall | |
Re: I have had this type issue when I edited my PHP pages in MS WebExpression3. I viewed the file in notepad.exe and it did not display and issues, however, when I opend the page in Dreamweaver, I found garbage before the PHP opening <? tag. Once I removed the garbage, … | |
Hi: I have created a simple contact form (see Form below), and a send_mail.php (see Send below) processor that verifies (not validates) the user has entered info all fields. Send then provides the user information and redirects them back to the contactus page. The problem I have is with the … | |
Hi: I embedded my Zen Cart store into my website. I have managed to get it working in IE by using the <OBJECT> tag. Why should I do this you ask? My website uses AJAX to load the pages into a div AND my storefront is not in the same … | |
Re: Zen Cart allows for downloadable files to be avaiable after purchase, and also allows for no shipping and no taxes. | |
Re: Hi: I've been using CodeLock and find it to be perfect! I like that it encrypts the whole file when you follow these 2 basic steps: 1. Only use <? opening tags as Codelock does not work with <?php opening tags. 2. Do not display encrypted HTML output and ALL … | |
Re: With payment gateways, you typically need only enter your return URL into the payment gateway configuration. Typically payment gateways will want you to use a secure page (https;//*.phps) as an example. Using payment gateways simplifies everything. | |
Re: Hi spazticrexe: Remove your line heights and declaire them seperately as such: [CODE] font: normal .85em Verdana, Helvetica, Arial, sans-serif ; line-height: 1em; [/CODE] | |
Good day: I'm creating a form to write SEO into my php page head and have run into a block on the mysql_query() UPDATE function. I just cannot seem to get it to write multiple fields in a row. What I've done so far is as follows: [CODE] <? if … | |
Hi: I have a dropline nav menu that works great in all standards compliant browsers and DID work perfectly in IE8 until I applied some Safari CSS hacks. The dropline menu has only 2 sub-menus under Company and Expertise. The issue is: prior to applying the Safari hacks, when hovering … | |
Re: Are you using one swf to load the movideclips or are you using javascript to load the individual swf files? Is this flash banner all done in flash or javascript changing the flash swf files? | |
Re: Hi Hwestman: 2 things... 1st. put your swf files in the same folder as the html script to simplify the scenario for test (you can move them back later) 2nd. try my code below: [CODE] <object id="player" width="352" height="288" align="middle" classid="clsid27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://fpdownload.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=7,0,19,0"> <param name="allowScriptAccess" value="sameDomain" /> <param name="movie" value="pelletsproduksjon.swf" /> … | |
Good Day: I'm working with an image changing javascript that allows you to click on an image to open a URL. The problem I'm having is that when I click on the image, it opens the said URL in a new window. I want it to open in the parent … | |
Hi there: I am running FCKEditor 2.6.4 and am looking for a solution to insert onClick and onMouseOver external javascript into the anchor tags of my editor instances. This insertion would be handled via a toolbar button. What I already know and have tried: 1. Know how to manually do … | |
Re: Try: [CODE]<script type="text/javascript" src="js/r_validate.js" language="javascript"/>[/CODE] | |
Re: [QUOTE=BzzBee;1336672]hello, People are trying to be very helpful here. I had a fckeditor at my php page, i want to put some data in fck editor when user click a button. How can i do that using javascript. Please help[/QUOTE] Hi BzzBee: I customize the FCKEditor constantly (far beyond playing … | |
Hi: I have a process allowing the admin to view users information and download files that the user uploaded to MySQL. When the admin clicks on the file link in the admin page, I expect the file will display using the default program (i.e. pdf or txt), or download (i.e. … | |
Hi All: I have been working very hard and long at understanding this situation. I have tried many different sample scripts, to check my work and find find my solution. I have created a job board for a client, the user applies for a job in application form.php which then … | |
Re: Did you see teh info about MEDUIMBLOB vs. BLOB and teh escape string. Those 2 items fixed the fpdf corrunption issue in that post. | |
Re: Frankly - I agree with the pro-forum side. BzzBee, I looked at you post and I answered it with questions. Damn - we can help you, but you seriously need to vacation first. When your done your vacation come back to Daniweb knowing the following 3 things: 1.Your not paying … | |
Hi All: I am trying to load an image into a div using AJAX. Instead on loading the image, I get �PNG as the result in the div. Does anyone know how to load an image into a div? Best Regards, dennishall | |
Hi there: I have a couple of scripts below where I have one issue as follows: I have a photoSlider div with my images changing in it from my function called `slideIt()`. This function displays the images in the div and should allow you to click on them replacing the … | |
Hi there: The code below lays out 3 divs, the 1st. div contains a slideshow, the 2nd. div is a container for the 3rd div which contains buttons to override the slideshow and replace it with a new image in the slidshow div. All the above scenario works perfectly. Where … | |
Hi: I have two external css files being loaded based on the following code in the head of my php file: <![if !IE]> <link rel="stylesheet" type="text/css" href="standard.css"/> <![endif]> <![if IE 7]> <link rel="stylesheet" type="text/css" href="ie7.css"/> <![endif]> <![if IE 8]> <link rel="stylesheet" type="text/css" href="standard.css"/> <![endif]> I am testing in FF3.5 and … |
The End.