6,557 Topics

Member Avatar for
Member Avatar for RykeTech

Hey everyone! I recently took over this website and am making some revisions, but for some reason the image won't center in the placeholder. The site is [URL="http://www.genevabeachresort.com/test.html"]here.[/URL] The CSS behind it looks like: [CODE].galleria-container { position: relative; overflow: hidden; background: #000; } .galleria-container img { -moz-user-select: none; -webkit-user-select: none; …

Member Avatar for RykeTech
0
206
Member Avatar for fusarium

I'm trying to take normal, plain Jane drop-down boxes to choose a time, and replace them with a nicer DHTML version. I followed this tutorial [URL="http://www.javascriptkit.com/script/script2/dhtmlcombo.shtml"]http://www.javascriptkit.com/script/script2/dhtmlcombo.shtml[/URL] but now my buttons are stacked on each other, the selected="selected" variable isn't pre-selecting anything, and if you click on a number (5), it …

Member Avatar for Airshow
0
78
Member Avatar for BonezAphex

I'm trying to make a program where when you click a button it will retrieve each value of certain things on a webpage. I.E; [url]http://thecaconline.net/cbl/player/OoHid…[/url] On that webpage it shows Clan,Kills,Etc. I want to make it to where a Label will Say "Kills:" And another label next to it will …

Member Avatar for codeorder
0
90
Member Avatar for saad749

I am trying to make a Measurements Units Conversion Calculater on Dreamweaver with help of Javascript. THis is my first ever javascript application and need to complete it in next 6 hours. :(( I want to have a drop box containing Length, Area, Temp etc. on top. When a user …

Member Avatar for @developer
0
231
Member Avatar for Pereguin

Hi, is there any way I can execute my PHP coding when my html image is clicked? Through AJAX, HTML, Javascript or anything. Right now my coding looks like this in Dreamweaver: <img src="_images/banner1.jpg" width="286" height="60" border="0" usemap="#Map" class="apply-btn" style="float:center; padding-top:20px; padding-left:240px;" onclick= "hello()" value='Applyonclick' input name='Applyonclick'/> </form> <script type="application/javascript"> …

Member Avatar for R0bb0b
0
171
Member Avatar for breckxf

Hey guys, I'm kind off new to PHP, and I'm trying to resolve this problem. I have a form where users can register their attendance for an event. If the person himself can not come, he has to register a replacement. So when the person clicks the radiobutton 'No, but …

Member Avatar for breckxf
0
74
Member Avatar for chinee

urgent problem i have this code in external css for paragraph but what is stated in the paragraph is not appearing like the color and font size. here is the code. [CODE].content{ width:920px; height:1000; background-color:#FFFAF0; background-repeat:repeat-y; padding:5px; .p{ align:center; color:#800000; text-align: justify; font-family: Arial, Helvetica, sans-serif; font-size: 16px; } img.floatLeft{ …

Member Avatar for chinee
0
376
Member Avatar for GreaseJunkie

Hi, I've got this nice little sales tool/form written where I can drop email addresses into my webform and automatically send an HTML email, but I want to have the option to send a different html body using a drop-down option. For example, if I want to send a "general …

Member Avatar for GreaseJunkie
0
236
Member Avatar for CharliePrynn

Hey. I need to click this button in vb.net. [CODE]<button id="login" class="fblogin"></button>[/CODE] How would I go about it? Thanks.

Member Avatar for CharliePrynn
0
93
Member Avatar for weloki

I'm using XSLT to try to grab content from an html page. I want to select all the <p> tags but exclude all the <li> tags. There is one page where the li tags are not within any of the p tags. For this page, how can I select all …

Member Avatar for weloki
0
70
Member Avatar for MACKENZIEKE

I am working on a project with PHP and MySql. There are reports i am producing which are picked from one table in different row. I would like this reports in pdf or convert them to pdf when viewing on html. keep in mind the the report pages are produced …

Member Avatar for chrishea
0
115
Member Avatar for prathameshz
Member Avatar for dkwired.com

I'm trying to add pages of content to my site however typing all the HTML tags slows me down. What is a recommended program to use to convert styled text with headings bullets to HTML source format?

Member Avatar for Adrian Kiwee
0
136
Member Avatar for mushget

I want to get the dynamic heights of some html divs. I am not programmatically applying height to them (so I don't know their values). If I fetch the height in mozilla I am able to fetch the exact value in px but in case of IE it gives "auto". …

Member Avatar for Adrian Kiwee
0
102
Member Avatar for kooia

Hi everyone, I have the impression that Internet Explorer can only use EM's. I also have the impression that em's are normally 16 px, but can very in size. Is this true? Both ways, how do you define the size yourself? kooia

Member Avatar for Frankey
0
599
Member Avatar for EZ Fanpage

Hai all, I need help on a simple CSS problem. I'm using the clicktohide and clicktoshow for my fmbl page but it seems that the first page is not showing. The site is here [code]http://www.facebook.com/pages/EZ-Fanpage-Mini-Site-Sample-1/162645693772019?v=app_7146470109[/code] Can anyone help me? I wanted to post the code here but the code is …

0
41
Member Avatar for vishalkhialani

Hi, Below is my code which I am using to remove a div tag. I also want the script to add the same div tag later once certain conditions are meet. The div has some preloaded content too which I don't want to loose. I tried the add() function but …

Member Avatar for vishalkhialani
0
165
Member Avatar for mushget

Hello I have a small problem in the tutorial of the CSS (see below). [CODE]body { width: 760px; margin: Self; / * To center our page * / margin-top: 20px; / * To avoid sticking with the top of the browser window. Try to show off! * / margin-bottom: 20px; …

Member Avatar for Arkinder
0
92
Member Avatar for aizel

[CODE] <div id="navmenu"> <ul> <li><a href="#">Home</a></li> <li><a href="#">About Us</a></li> <li><a href="#">Services</a></li> </ul> </div>[/CODE] output that i want: i want it to start at the right so here is the sample output: <----HOME ABOUT US SERVICES so if i add contact from the list it should be: <----HOME ABOUT US SERVICES …

Member Avatar for Kraai
0
71
Member Avatar for erum

i have bit tricky kind or problem. i need to get values of each textbox in loop with different names,i have three row (name,telephone,email)and off course three textbox ,can any one help how to get in loop ,i need to insert them in database [CODE] Dim arr() As String Dim …

Member Avatar for shine_jose
0
207
Member Avatar for erum

i write following statment in my code [CODE]Response.Write(arr(0).ToString(), arr(1).ToString(), arr(2).ToString())[/CODE] but it gives me an error [COLOR="Red"]Conversion from string "xxx" to type 'Integer' is not valid.[/COLOR] althought array has values like this arr(0)='erum' arr(1)='dsds' arr(2)='sdsd' arr(3)='Nothing' [CODE] Dim arr(3) As String Dim record As Int32 record = 0 [/CODE] i …

Member Avatar for ciint
0
317
Member Avatar for Gerbiler

I have created an html page that must not have the automatically created url/page number at the top, in the header, or the url/page number at the bottom, in the footer, when you print the page. I know that it is possible because google maps does it [URL="http://maps.google.com/maps?hl=en&ie=UTF8&ll=37.0625,-95.677068&spn=54.269804,79.013672&z=4&pw=2"]http://maps.google.com/maps?hl=en&ie=UTF8&ll=37.0625,-95.677068&spn=54.269804,79.013672&z=4&pw=2[/URL]. So I …

Member Avatar for Airshow
0
131
Member Avatar for mr-cracker

Hi all, i'm doing a searching page, where results will be shown and there will be a check box for each row on left (similar to yahoo and gmail) all results together work as a form however each row can be controlled individually which means another form inside the main …

Member Avatar for chrishea
0
154
Member Avatar for cursedever

Hello everyone! I've been using this simple html parser here: [url]http://simplehtmldom.sourceforge.net/[/url], yes, its working like selecting all the divs with specified id's,but my question is, how about if i'm gonna include to show and select the tags like: <head> </head>, <div> </div>. Any idea how to do this? Thanks :)

Member Avatar for hielo
0
85
Member Avatar for thegecho

I've been working on this for a couple days and know it's something small but for the life of me I can't figure it out. (I've been using Daniweb for a long time, but just joined because everyone seems so helpful. :) ) Maybe someone can help me too. Here's …

Member Avatar for richieking
0
102
Member Avatar for arctushar

Hi I want to make a form site. Which will contain html form. but after submitting it will will return a pdf file with that form data. I found some third-party library to fill pdf form. But those are not working well. How can I do that. thanks all

Member Avatar for chrishea
0
34
Member Avatar for SaaDwTk

I need an code to go this page: [url]http://steamcommunity.com/groups/KiFFERSTUEBCHEN/members[/url] And grab the data beetwen: [url]http://steamcommunity.com/id/[/url] and " [CODE]href="http://steamcommunity.com/id/otti">threeD</a><br />[/CODE] so it will grab in this case the word "otti" Theres a lot of lines like that, so i need a code that grab all the specified words of the page …

Member Avatar for thomas49th
0
183
Member Avatar for lse123

in JSP mail scripts may rather email a html code, email a file JSP, I mean NOT as attachment but itself embedded in message and show, eg pictures etc text from this file?

0
72
Member Avatar for tomccabe

I have an XML file like such: [CODE]<spice> <sections> <contact></contact> <products></products> <people></people> <homes></homes> <harvest></harvest> <contactCopy> <banners><![CDATA[Lots of <u>text</u> with tons of <a href="#">links</a> and <i>other</i> markup.]]></banners> </contactCopy> <homesCopy> <banners><![CDATA[Lots of <u>text</u> with tons of <a href="#">links</a> and <i>other</i> markup.]]></banners> </homesCopy> <productsCopy> <banners><![CDATA[Lots of <u>text</u> with tons of <a href="#">links</a> and …

Member Avatar for hielo
0
313
Member Avatar for teedoff

Ok I have created a simple form in order to build new product pages using php. I wanted to be able to have a simple form that a data entry person here could input text and such areas as page titles, meta content, brand names, and other text on the …

Member Avatar for teedoff
0
1K

The End.