6,557 Topics

Member Avatar for
Member Avatar for Squidge

Hi all, I seem to have an issue with my CSS. The page setup that has the issue is: <footer> <section 1></section 1> <section 2></section 2> <section 3></section 3> </footer> The sections are set to 33% width and floating left. The containing footer does not seem to expand in height: …

Member Avatar for Squidge
0
178
Member Avatar for saucy6969

Hi there I am working on my new website for my organisation's festival. All pages working well thus far EXCEPT for the Contact page. The footer is below the black area. I must be missing something in the code to get it to sit where every other page has the …

Member Avatar for saucy6969
0
290
Member Avatar for Monkey101

For my webpage I want to set up columns (boxes). For example I have an image floating to the left then I want to float another image or a plain box underneath the image. This is my HTML code <div style="float: left; background-color: white;"> <img src="Images/Books.jpg" alt="Books" width="225" height="125"/> </div> …

Member Avatar for Monkey101
0
220
Member Avatar for Monkey101

<div style="width:100%; background-color: cornflowerblue"> <div style="width: 13%; float: left; text-align:center; height:30px; background-color: cornflowerblue;" <li><a href="" style="text-decoration:none; padding-top: 3px; padding-bottom: 3px; color: white; font-size: 20px;">About</a></li> </div> <div style="width: 13%; float: left; text-align:center; height:30px; background-color: cornflowerblue;" <li><a href="" style="text-decoration:none; color: white; padding-top: 3px; padding-bottom: 3px; font-size: 20px;">Books</a></li> </div> <div style="width: 13%; float: …

Member Avatar for Monkey101
0
195
Member Avatar for RinzLove

Hi, I've problem positioning the div. I would like to have the div (id=new, id=cd) position beside .navmenu instead of below .navmenu Please see the code. Many thanks.. <div class="catalog"> <blockquote> <h1 style="text-align: right;"><marquee direction="right">Free Shipping Islandwide for Purchase above S$100<img src="images/plane.png" width="70" height="40" alt=""/></marquee></h1><br /> <div id="left"> <div> <p …

Member Avatar for IIM
0
257
Member Avatar for jonsan32

I'd like to figure out how to (if there is a way) to have 3 dependent dropdown boxes with a submit button that could filter my blog by label. It's for athletes who want to be recruited. I'd like for coaches to be able to select a sport, then select …

Member Avatar for LastMitch
0
356
Member Avatar for ultramel

hi I have the following which brings up the print window for my page, however, I would only like to print the "echo" form data which is being displayed and not the entire page. any suggestions would be greatly appreciated :-) Thank you <script> function printpage() { window.print(); } </script> …

Member Avatar for almostbob
0
205
Member Avatar for MasterHacker110

I have finaly completed the demos of my webpage project. But there is one things that I don't know how to implement. basicly a basic input box is: <form> <input type="text" class="my_Text_box"/> </form> What I need thow is an input box of a certain widht, hieght. And that will take …

Member Avatar for MasterHacker110
0
216
Member Avatar for rommel.t.brillantes

Hi guys, I have a simple authentication portal that when a user's code renders valid, it redirects to a link and it loads my website. However, I need to auto open two websites. The second website that need to open upon authentication could open in another tab or it could …

Member Avatar for advaanz
0
189
Member Avatar for dbalas

Hi! I need help with sending html email with all the records from two tables. I tried joint tables but it doesnt work as it should... Here is what i have session_start(); if(!@$_SESSION["UserID"]) { header("Location: login.php"); return; } ?> <?php $con=mysqli_connect("..."); // Check connection if (mysqli_connect_errno()) { echo "Failed to …

Member Avatar for dbalas
0
195
Member Avatar for dhani09

I have the following code to draw any polygon on an HTML5 canvas on a button click. The user supplies the radius, sides, x and y co-ordinates. Using the sides any regular polygon should be drawn. First we move to the perimeter using moveTo() and then draw lines using lineTo() …

Member Avatar for IIM
0
200
Member Avatar for erum

i have follwoing code in jquery function CallService3() { $.ajax({ type: "POST", url: "MyService.asmx/Comments", // data: "{ 'loginid': " +"'"+ $("#txt_login").val()+"'" + ", 'pass': " + "'" + $("#txt_pass").val()+"'" + "}", data: "{}", contentType: "application/json; charset=utf-8", dataType: "json", success: OnSuccess3, error: OnError1 }); } function OnSuccess3(data, status) { if(data.d.length > …

Member Avatar for LastMitch
0
206
Member Avatar for gilbert.jacob1

Hi Guys, I have a problem with regard to creating a dropdown main menu in CSS. I have already tried to change/add my code and checked other resources but it still doesn't work. I hope you guys will be able to help me. Many thanks. Jacob Here is my HTML …

Member Avatar for gilbert.jacob1
0
180
Member Avatar for Ayesha_2

1. Create the HTML document using Notepad for Figure 1.1 (page 2) by following instructions: • Use the following DTD <?xml version="1.0" encoding="UTF-8"?> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> • Just below the html opening tag, add the following details as comments using the eg. <!-- This is …

Member Avatar for Schol-R-LEA
0
141
Member Avatar for NiescierJ

I am trying to set "myimage" as the background for my GUI but having problems with self.canvas.create_image(myimage,750,450) def __init__(self): self.root=tk.Tk() # The number of times the GUI is updated self.ctr = 0 #creating the Canvas self.canvas = tk.Canvas(self.root, width=750, height=450, bg = "black") #Sets the background as an image myimage=PhotoImage(file='world.gif') …

Member Avatar for vegaseat
0
335
Member Avatar for NiescierJ

hey i am working with python 3 and i am trying to set a gif file as my GUI background. The canvas.configure(bg=myimage) does not work. Any ideas? width, height = 800, 500 canvas = tkinter.Canvas(width=width, height=height, bg="black") canvas.pack(fill=None, expand=False) #Sets the backround image myimage = PhotoImage(file='world.gif') canvas.configure(bg=myimage)

Member Avatar for vegaseat
0
14K
Member Avatar for jemz

Hi, how to make something the same in daniweb when we clicked the log-in link the background color black will be visible "i think this is called mask background", and it will cover the whole page even the the content is short or long it will adapt the size of …

Member Avatar for jemz
0
116
Member Avatar for dewhickey

I know how to set it to auto jump to the next field in the form after a certain number of characters are entered. But that's not what I need. I need this: If number 2,3,4,5,6,7,8, or 9 is entered, I do want auto jump to the next field. However, …

Member Avatar for imBaCodes
0
195
Member Avatar for tony75

Hi How can I parse html files for example daniweb.com 1.Extract all the links pointed (the content of the href tag) 2. how can I List all of them after having removed the duplicates (means that there is two links pointed the same page, only one should be displayed) I …

Member Avatar for tony75
0
287
Member Avatar for Benji11092

Hi I am trying to create this application where I need to create a panel with different buttons. I can select a button and drag a button on to a canvas. Can anyone tell me how to create a dragging button.

Member Avatar for <M/>
0
193
Member Avatar for deepak.fugo

Hi All, How can we set a value to iframe textbox element either in JS/Jquery <head> <script type="text/javascript"> function load() { alert("Frame is loaded"); myframe.document.getElementById("user_email").value = "<?php echo $var ?>"; } </script> </head> <body> <iframe onload="load()" id="myframe" name="myframe" src="http://www.gigpayrr.com/signup" width="700px" height="600px"> <p>Your browser does not support iframes.</p> </iframe> </body>

Member Avatar for deepak.fugo
0
1K
Member Avatar for sim_pack

i have this code to render a locally saved html file onto a jframe. i have the following problems with how the html was rendered: 1. the texts of the 'webpage' do not wrap; 2. in order to solve my problem in 1. above, i added a JScrollPane, problem is, …

Member Avatar for sim_pack
0
562
Member Avatar for allifields

Hi, so I have developed a top fixed navigation bar at the top of a webpage. How do I incorporate a fading navigation bar so that when I scroll down, the fixed bar turns from black to a certain opacity level? Is that something incorporating jquery? And if possible, if …

Member Avatar for Dani
0
973
Member Avatar for alyssa.wilkins.77

I am trying to style my ordered lists and unordered lists to appear the same in Firefox. I have all my text centered. In firefox, the bullets and numbers appear right next to the items. I have done some css styling but it requires for teh text to be aligned …

Member Avatar for alyssa.wilkins.77
0
187
Member Avatar for aqr996

how can i set to the top directory (i.e. **public_html/folder**)? I have tried **$_SERVER['DOCUMENT_ROOT']** without luck. define('JPATH_BASE', dirname(realpath(__FILE__)). '/folder' );

Member Avatar for pixelsoul
0
322
Member Avatar for justzamir

Hi, Well i am totally new to css and html, i am making a table with css, need to show hover on image and text, hover is showing correctly on text, but on image its not working, below is my html and css. <style type="text/css"><!-- #list4 { font-family:"Comic Sans MS", …

Member Avatar for justzamir
0
249
Member Avatar for MasterHacker110

I have taken up a project of creating my own forum. A chat forum. I have started to design the homepage. But there is still much more work to do. The thing is I dont know how the folowing things work: Member login and that each member has their own …

Member Avatar for James singizi
0
285
Member Avatar for active-worker

Hi Everybody, Good day Please see the following codes and response: h4.footer-header{background: transparent url(images/footer-header.png) no-repeat; line-height: 58px; text-indent: 30px; } #video .play{ float:right; margin-top:5px; } .mini_portfolio_item .block_inside { background:none; background-color:#e2dddc; padding:25px 30px 15px 30px; } background: transparent url(images/footer-header.png) no-repeat; line-height: 58px; text-indent: 30px;} Why there has no gap/space between h4.footer-header? …

Member Avatar for active-worker
0
139
Member Avatar for theon.fox

Hi, I would like to get started on Codecanyon and Envato. Any guidlines how to do it faster. I know html, CSS, Javascript, a little PHP. Do you think I could get some free code and modify it?

Member Avatar for <M/>
0
158
Member Avatar for ppstyle

Hi, I am making a richtextbox to html convertor, I have added features like bold italic underline left align right align center align etc. I found a code to convert richtextbox to html but i am not sure how to use that function. Public Shared Function FromRtf(ByVal rtf As RichTextBox) …

Member Avatar for ppstyle
0
315

The End.