button

1
Integrating other website's form into mineview story

http://forums.digitalpoint.com There is website in my country for sending free SMS but it is portal and it takes a long time to load. I wanted to make site where I will integrate login and form for sending sms. How to do that, when users login to my site, actually login to that portal but stays on my site to send sms? Just give me hints how to do that Here is code LOGIN BOX Code: <form name="asmpform" action="http://webauth.vip.hr/vasmpauth/ProcessLoginServlet"> <label for="UserID">Korisnicko ime:</label> <input name="UserID" class="login_username" id="login_username" type="text" /> <br /> (Programming)

3
flash validation "embed"view story

http://www.webdesignforums.net So ive been working on re-coding my site into a clean CSS layout. Im getting the hang of it pretty good, although it gets pretty frustrating sometimes, but a quick search around the web usually turns up the answer.. anyway.. how do I fix this in relation to a flash audio button I have (eventually will have 6 on this page) the tag name: "embed" not found in currently active versions.[XHTML 1.0 transitional] (Programming)

5
flash validation "embed"view story

http://www.webdesignforums.net So ive been working on re-coding my site into a clean CSS layout. Im getting the hang of it pretty good, although it gets pretty frustrating sometimes, but a quick search around the web usually turns up the answer.. anyway.. how do I fix this in relation to a flash audio button I have (eventually will have 6 on this page) the tag name: "embed" not found in current active versions.[XHTML 1.0 transitional] (Programming)

3
Modern UI and Layout Tutorials for Photoshopview story

http://speckyboy.com It would be very hard to find a situation where Photoshop does not have the perfect solution for any web (or print) design problem. With Photoshop you can pretty much design a web page just as you envisaged mentally, with virtually no creative restrictions and with a pixel-perfect result.Web design trends change, and they change regularly. As such, it is very important that a designer stays on top of the game and their UI designs reflect modern design demands. What was design relevant a couple of years will more than likely not be relevant now. It is the web designers responsibility to know what the current design trends are and have the necessary skills and tools to implement them in relation to the project. (Web Design)

5
Top 10 Most Beautiful Icon Sets For Free Downloadview story

http://resources.savedelete.com Today, the use of icons in websites and blogs is new upcoming feature in designing. . it’s new trend in web designing and designers taking full enjoy for making of these type of icons. If designers want to make the website new and and creative that time they used beautiful icons in websites. These icons are used in social media websites and blogs mostly because the first step of designing your website or blog is to connect it to the social networks and for this, you need to have a proper set of social media icons placed in your website. A  few days ago, we had been provided 30 Creative Social Media Icon Sets For Free Download. (Web Design)

6
Delete cookies with Javascriptview story

http://www.codingforums.com Hi I am working on a .net basket where I save the info for the products in the basket etc in a cookie. Now I have an html button on the basket page where I want to be able to delete the product (Cookie). I am using Code: <script type="text/javascript"> function delete_cookie ( cookie_name ) { expires = Now(); document.cookie = cookie_Name+"= ;expires="+expires.toGMTString(); } </script>But I get an error that says the cookie is not delcared? But it does exist because I retrive the name of the cookie when looping through the cookie list. What am I doing wrong here? (Programming)

6
WordPress Fat-Loss Diet to Speed Up & Ease Loadview story

http://line25.com Last week we looked at some useful plugins to enhance and protect WordPress, following on with the WordPress topic let’s look at how you can tweak your WordPress install to increase the speed of your site and ease the load on your web servers. We’ll be putting the front end code on a strict diet, while trimming the fat from the database to produce a fast, lean website that doesn’t clog up your server’s resources. (Web Design)

2
Help w/functionview story

http://www.codingforums.com Hello all, I'm not sure if I'm in the right place, but I need help. I have a php page that connects to a database and and pulls info from a second page. When the user selects an activity, they see a green button that says 'Add to Activity Log'. The problem is that right now I have the code setup like this: Code: <tr>             <td><a class='green-button pcb' href='#'><span>Add to Activity Log</span></a></td>         <td><strong><? echo $name; ?></strong></td> (Programming)

6
Stop Codeview story

http://www.codingforums.com Help! I'm not very good with html/css or any web stuff, my friend wants a blogger for his videos that I'm currently working on. Ive managed to create a splash page that features one video and an enter button. The only problem I am having is, one you click on 'wood + wires' it should go into the blog part of the page, which it does, but the sound of the video keeps playing. Is there any way to make it stop? This is the blog http://brennygee.blogspot.com and this is the code I'm using for the splash page... Please help! <!-- Welcome page Start by http://bloggersentral.blogspot.com/ --> <!-- HTML part --> <div style="padding-top:0px;"> (Programming)

4
HTML Radio Buttons and JavaScriptview story

http://www.codingforums.com Can anyone tell me how I can use JavaScript to check to see if a radio button is checked. I tried the code below, but that doesn't work. <script type="text/javascript"> function hideAll() { document.getElementById("existing").style.display="none"; document.getElementById("delivery").style.display="none"; } </script> <script type="text/javascript"> function doIt() { var q = document.getElementsByName('q'); for(var i = 0; i < q.length; i++){ if(q[0].checked == true){ document.getElementById("existing").style.display="none"; (Programming)