- Upvotes Received
- 1
- Posts with Upvotes
- 1
- Upvoting Members
- 1
- Downvotes Received
- 2
- Posts with Downvotes
- 1
- Downvoting Members
- 2
18 Posted Topics
Re: Hi vinomashwin as i see you have problem with Login and registration page as i had 1 week ago and as i solve it using phpBB which is a community Board you can use it on you site or use it for your own community Board what you have to … ![]() | |
Hi all, Today I read a thread by QWaz that just have been marked as solved. So, I think I should start a new thread with a prefix Tutorial as you are reading now. I'm going to cover in this tutorial are: - Create a directory after registering a new … | |
Re: You have to learn some basics for Web designing. You must have knowledge about HTML and CSS in order to make a good looking website. Though there are many ways to make a web page using WYSIWYG editors you may download [URL="http://kompozer.net/"]Kompozer from here[/URL] or [URL="http://www.pspad.com/en/download.php"]PSPad from here[/URL], But for … | |
Re: Hi there, You can check this out: [CODE] <HTML> <HEAD> <TITLE> Table Background</TITLE> <style type="text/css"> .tablecolor { background-color:lightgrey; border:1px solid grey; } .rowcolor { background-color:#ABABAB; border:1px solid black; } BODY { TEXT-DECORATION: none; font-family:verdana; font-size: 9pt; text-indent: 20px; background-color:black; } </style> </HEAD> <BODY> <center> <br><br> <table class="tablecolor"> <tr class="rowcolor"> <td>Row1,Column1 … | |
Re: Hi there, It's good to learn C. Basically C program can interact with hardware and you can do even more with it if you are pro in it. But C is a 16-bit DOS oriented programming language, it uses 16 bit address scheduling. It's neither possible to design a window … | |
Re: Hi there, frame attribute in table Specifies which parts of the outside borders that should be visible. For more information regarding this you can check it [URL="http://www.w3schools.com/tags/att_table_frame.asp"]here[/URL]. Else can look at Tryit Editor of w3schools [URL="http://www.w3schools.com/tags/tryit.asp?filename=tryhtml_table_frame"]here[/URL] I hope this might help you in clearing your doubt. Regards Surya | |
Hi, I have searched all over google to find a best book for PHP, and feel lost cause a lot of reference, and I can't even try different books at a time. I want to purchase a book on PHP which covers database, it should have a good availability in … | |
Re: HI there, If your function having nothing to return then type : [CODE]return(void);[/CODE] In the end of of your function body. It will stop pointing this error for particular function. | |
Re: Post your website address or source code, so that we can look for the problem and understand it well to help you in finding your problem. By looking at your question you have posted, it seems that there is an align/ margin/ padding problem somewhere in your code look for … | |
Re: Hi MDanz, In order to clear your all the doubts, please look carefully at the code below: [CODE] <html> <head> <title> best practice for listing and divs</title> <style ="text/css"> h1{font-size:1.5em; font-family:calibri;} .CODE{display:block; border:1px dashed grey; background-color: lightgrey; padding: 2 2 2 2; margin: 2 2 2 2; } .MODE{display:block; border:1px … | |
Re: Hi there, Check this code: [CODE] #textfield { width:400px; height:180px; margin:30px 50px; background-color:blue; border:2px solid #2cb823; /* for IE */ filter:alpha(opacity=60); /* CSS3 standard */ opacity:0.6; } [/CODE] It might help you. Regards Surya | |
Re: You may change your css code to: [CODE] .box { margin:0; -moz-border-radius:15px; -khtml-border-radius:15px; -webkit-border-radius:15px; border-radius:15px; -moz-box-sizing:content-box; -webkit-box-sizing:content-box; -khtml-box-sizing:content-box; box-sizing:content-box;; background-color:red; } .box h3 { margin: 0 auto; background:url(pnk_tmp_01_rounded_top.gif) no-repeat top left; padding: 10px 20px; } .box ul { padding: 10px 15px 10px 15px; } .box li { padding: 5px 20px … | |
Re: Hi there, It's very simple to shutdown your PC using C program on Windows platform. Here is an example : [CODE] #include<iostream.h> #include<conio.h> #include<process.h> void main() { clrscr(); char *q[40]={"shutdown -s -f -t 100"}; /* place any value you like at the place of 10 value is in second so … | |
Re: Hi there, I have looked and checked for your problem you are having on Vertical Navigation Background Image Problem within the attachment and here is the attached files that I have modified: [ATTACH]16462[/ATTACH] Here is the original code of your CSS provided in the attached file inveb.css is: [CODE] #content … | |
Re: Hi there, Tables background color can be assigned by code as shown below: [CODE] <HTML> <HEAD> <TITLE> Table Background</TITLE> <style type="text/css"> .tablecolor { background-color:lightgrey; border:1px solid grey; } .rowcolor { background-color:#ABABAB; border:1px solid black; } BODY { TEXT-DECORATION: none; font-family:verdana; font-size: 9pt; text-indent: 20px; } </style> </HEAD> <BODY> <center> <br><br> … | |
Re: Very first you have to post the code to let others know about the problem. Yet for your help, try to look for the <title> </title> tag in you head section of anyone/ both .htm files. If they aren't there put it for example : [CODE] <title> My Page Title</title> … | |
Hi to you from me..:) i am Surya a going to be computer science engineer this year :$ well well apart from this i am complicated guys with normal problems roaming here and there to solve them out :P well don't take me seriously !!:cool: C ya with some discussion's | |
HI, i am trying to high light sub menu when selected just like Daniweb IT Community as it shows: Web Development > web design i am using site reptile to build site and there they use tags to genertae menu's automatically in DHTML here is it's Structure style in which … |