13,937 Topics
![]() | |
hi, We are a small new firm. we have website developed in word press but our developer left remaining work incomplete n left the job now we have a button on our first page as live chat and we want to add chat support to it. how to solve this … | |
Hi to all,can anyone please explain how to move tables around,for instance i have for small tables of 2 rows each,how can i place them in the middle of the screen ,like 2 on the top and 2 below? i tried to use #my_table{margin-top:20px; margin-bottom:1500px; margin-right:700px; margin-left:1200px;width:100px;} but even if … | |
HI guys, I wonder if any could help with this. In my daily job I often find myself picking up code written by other developers and making additions to it. Now, this is often a problem because if I change a css rule I might end up breaking the layout … | |
Hi all, I'm trying to add spacing between the <option> tags by padding, height and margin - yet none have worked. Does anyone have any ideas? It's the simple things that stop me in my tracks haha. All of the options look cramped up and untidy, I'd like to give … | |
Hi Guys and to all programmers, I have a website wherein my header appears on all pages of my website. Did a test by disabling the display; however, the header was gone on all pages of my website so I turned the display back on. My question is, is there … | |
Hi to all,have a question,if i do radio buttons ,do i need to put label around each input and second -if need to chnge the color of of the words after the input /> how will i do this? <label for="award_type" id="award_type">Award Type:</label> ?? <label ><input type="radio"name=" award_type" />Higher Certificate … | |
I am planning a service that I would like to eventually grow into a multi-platform service, however, my original plan of creating a hybrid app may not be the best decision. Is it better to come up with one app design and recreate it on each platform, or design a … | |
How can i wrap my text around the image on this page? it's using a float, but i want it to wrap around the img of the hand. [http://www.mimahealthcare.com/about.php](http://www.mimahealthcare.com/about.php) thanks | |
I'm having problem on my fixed background during transition. I have 2 panels, the panel-1 has 2 images which will animate from left to right and from right to left respectively, basically it will just add a class 'animate' to trigger the transition. During the transition, the panel-2 (which has … | |
hello every body on daniweb i build my site but it suffer on different screen resolution can't see whole site and div are going right div are going down so listen about make it fluide use body in css 100% how i will do it only body width must be … | |
If we have something in a `div` block , how come it can flow out of the `div` block as if nothing's even there ? For example , here : <!DOCTYPE html> <html> <head> <link type="text/css" rel="stylesheet" href="box.css"/> <title>Result</title> </head> <body> <div> <p>one</p> <p>two</p> <p>one</p> <p>two</p> <p>one</p> <p>two</p> </div> </body> … | |
Hi all. I am designing a HTML website that only runs on smartphones. When I test the website on my smartphone it cuts off the words right at the bottom... It only allows the user to scroll down with +- 2mm or 1cm. I've put in underneath the styles.css a … | |
Dear Sir, please see what is wrong with my codes <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" /> <title>Bismillah Cotton</title> <style type="text/css"> .foramt { border-color:green; border-width:2px; border-style:solid; width:200px; height:50px; color:red; font-family:verdana; font-size:14px; font-style:italic; text-align:center; } </style> </head> <body> <div class="format"><p>How are you?</p></div> … | |
1. A List Apart 2. Smashing Magazine 3. 456 Berea Street 4. Meyer Web 5. Simple Bits 6. Pearsonified 7. Tutorial Blog 8. CSS Beauty 9. Snook.ca 10. Bartelme Design 11. The Man in Blue 12. Andy Budd 13. Particle Tree 14. Warpspire 15. Brian Gardner 16. Sitepoint Design Blog … | |
Hi masters I'm new to Google blog So i just want some instruction regarding blog managing Help me out Thank you | |
Hello guys. I have a small problem with the following code: main.html <html> <head> <link rel="style" href="main.css" > </head> <body> <ul> <li>Home</li> <li>About</li> <li> Portfolio <ul> <li>Web Design</li> <li>Web Development</li> <li>Illustrations</li> </ul> </li> <li>Blog</li> <li>Contact</li> </ul> </body> </html> main.css body { font-family: 'Lucida Grande', 'Helvetica Neue', Helvetica, Arial, sans-serif; padding: … | |
1. You need a text editor i suggest notepad++ ( http://notepad-plus-plus.org/ ) 2. You need a color picker i sugest pixie by Nattyware ( http://www.nattyware.com/pixie.php ) 3. Learn how to code at w3chools.com i suggest you start with the html tutorial (http://www.w3schools.com/html/ ) and the css tutorial at ( http://www.w3schools.com/css/ … | |
Hi friends, In my web site, I have added Google Translator. From the moment I add Google Translator my some div elements are not working properly. I have set header div 0px from the top. (See the attachment 01 or http://i40.tinypic.com/2lcbcef.jpg) But after I adding GT (Google Translator) header section … | |
Hi I am studying html5 and have a hard time understanding exactly how those tags function.Maybe I am used to the old div tags and cannot figure out what is going on. For example I look at a page made with html5 and css3.In the page there are 3 article … | |
Hello everyone. I am new here and hopefully I can get some help. I just uploaded my website to a new host and have my own domain. For some reason I cannot access my site at all, whereas others I have spoken with can access it with ease. I am … | |
hey guys, I am really new to UI design and I am trying to finish building a simple website to include on my resume. My problem is that I have a login page with a radio button asking the user if they are an existing customer. If they are they … | |
i try make my site compatible with all stadanrt devices and when i litle work but my proble is images is still large small screen how can i do it automatical resize in small screen, such they are in diferent class diferent div ... here is my css @media only … | |
hello friend i need help. i created my site and i trying to make it compatible with all screen size (resolution) i use media query, what want is to know how to calculate the pixel smaller or larger i mean if my screen is 1200px and the div is 1000 … ![]() | |
Guys, I need to write thread safe singleton class for my assignment. below is the code snippet for factory method in singleton class, I will appreciate if anyone is having suggestion for the same. *MySingleton * MySingleton::GetInstance() { if (m_pOnlyOneInstance == NULL) { pthread_mutex_lock(&mutex); m_pOnlyOneInstance = new MySingleton(); pthread_mutex_unlock(&mutex); } … | |
I want to have ONE picture on my home page (a poster) and when the date is done I want the new one to replace it and the old to go to a list of all the previous posters. if anyone has a snippet of code that would be amazing. … | |
Hi, I would like to center two images. These two images must be next to each other and located in the center of the screen harizontally. This is what I've tried. header.php [CODE] <div id="banner"> <img src="<?php echo get_stylesheet_directory_uri(); ?>/images/banner.png" class="center"/> <img src="<?php echo get_stylesheet_directory_uri(); ?>/images/bannerside.png" class="center"/> </div> [/CODE] style.css … | |
<body onresize="self.location.reload()"> This works in IE 8, Google Chrome, but will not reload upon resize in Firefox 24.0. How can I fix this? Should I switch to using CSS3 media queries? | |
I am creating a php page that allows users to add a new letter to a letter archive that is saved to an XML file. One of the form elements is recipient with a text box. I would like to add a button that when clicked it will bring up … | |
I need a help in my css.., i am using an [Isotope](http://isotope.metafizzy.co) for my portfolio, I want my grid to be responsive but I have a problem with the grid look in 960px below size browser. here's the screenshot: [IMG]http://i.imgur.com/LGvVPrQ.png[/IMG] it looks like after the first row, the divs are … | |
i was on the net one moment, then i shut down the PC for the night... came on the next morning and find that all my sites from the "favorites" section in iExplorer have disappeared.... has anyone experienced this before....?? can anyone help me out..???? |
The End.