1,100 Recommended Topics
Remove Filter ![]() | |
I'm struggling with acquiring the same consistent table size across all three primary browsers as shown below. http://i41.tinypic.com/izxrtu.jpg - Chrome http://i43.tinypic.com/24yctw6.jpg - Firefox http://i39.tinypic.com/2ceg3lj.jpg - IE I'm not sure if it's a coding issue or a table issue, but here's the primary CSS: body{ background-image: url(../DefaultBackground.png); background-repeat:repeat-x; background-color: #FFFFFF; border: … UI / UX Design html-css web-browser web-design | |
Hi, I'm writing a pure css slideshow for my website, with dots which are being turned on and off according to the current image. By default the slideshow works automatically (keyframe animation), till the user clicks one of the dots and the according image is being displayed. When a dot … UI / UX Design web-design ![]() | |
Hey, I could sure do with some help on this... Been pulling my hair out. I have a single HTML file with various page transitions - I am trying to solve the coding issue to allow me to have four new blog pages - but that all default to the … UI / UX Design javascript web-design | |
Hi, May I know how they do that kind of select box in css or javascript?  UI / UX Design web-design | |
Responsive Web Design essentially indicates that a web site is crafted to use Cascading Style Sheets 3 media queries…with fluid proportion-based grids, to adapt the layout to the viewing environment, and probably also use flexible images. As a result, users across a broad range of devices and browsers will have … UI / UX Design html-css web-design | |
Using a CSS background gradient and, in Chrome, it just shows up as solid black if the div is greater than 32,000 pixels. background-color: white; background-image: -webkit-linear-gradient(top, #EEE9F0 10%, white); background-image: -moz-linear-gradient(top, #EEE9F0 10%, white); background-image: -ms-linear-gradient(top, #EEE9F0 10%, white); background-image: -o-linear-gradient(top, #EEE9F0 10%, white); background-image: linear-gradient(to bottom, #EEE9F0, white); … UI / UX Design html-css web-design | |
I have a gallery of product images in an e-commerce site which the client wants to "pop-out" on rollover. I wrote this CSS style to do it however while it works fine in Firefox .. not so in IE10. Can anyone suggest a work-around with this code that will support … UI / UX Design html-css image web-browser web-design | |
HI all, I was wondering if it is legal to have a span tag inside a legend, something like this `<legend>This is my<span>legend</span></legend>` Can't quite work out whether legend is a block element or inline thanks UI / UX Design html-css web-design | |
[Image of design issue](http://imgur.com/seWlte0) Hi peeps, Struggling to locate the source of this issue. The dropdown for ALL of the menu items appears on the far left of the nav and not below te menu item selected. For example, in the image above I clicked programming and the dropdown appeared … UI / UX Design html-css web-design | |
**CSS** ul#menu { margin:0;} ul#menu li { padding: 0 0 0 0px; list-style: none; margin: 2px 0 0 0; display: inline; background: transparent;} ul#menu li a { float: left; font: bold 120% Arial, Helvetica, sans-serif; height: 24px; margin: 10px 0 0 20px; text-shadow: 0px -1px 0px #000; padding: 6px 20px … UI / UX Design asp.net web-design | |
please help on my codes ...this works good in firefox but in internet explorer it gets disarrange. also, if im gonna zoom in/out in both browsers it also got disarrange.thanks index.php <?php session_start(); //Unset the variables stored in session unset($_SESSION['SESS_ID']); unset($_SESSION['SESS_LNAME']); unset($_SESSION['SESS_FNAME']); unset($_SESSION['SESS_MNAME']); unset($_SESSION['SESS_SUFFIX']); if (isset($_GET['page'])) { $pg = $_GET['page']; … UI / UX Design html-css web-design | |
Hello, I am looking for html codes to change the css background. Is the following codes correct? index.html <div id="demos"> <div id="slideshow" class="pics"> <img style="background-image: url('../images/indonusa1.jpg');"> <img style="background-image: url('../images/indonusa2.jpg');"> <img style="background-image: url('../images/indonusa3.jpg');"> </div> <ul id="nav"> <li><a href="#"></a></li> <li><a href="#"></a></li> <li><a href="#"></a></li> </ul> </div> Thanks before. UI / UX Design html-css web-design | |
Recently i've posted a question on how could i possibly attach an image on top of my navibar menu. I did it thanks for help. Now i am facing with another issue. What if someone who is on my site presses Ctrl + ? And zoom in ? or zoom … UI / UX Design web-design | |
Full disclosure - I'm not total novice so any help would be appreciated but simple help for dummies will be **extra** appreciated :) I'm creating a form in an html page. It needs to link up with a payment gateway and forward the entered information (I'm currently using the method="post" … UI / UX Design html-css php web-design | |
Please Can anybody tell me how can one insert Text boxes in an email temaplate body. I need 2 pairs of 3 text boxes below my email address which i will use to send information... the email template is written in Html.. UI / UX Design web-design | |
so I'm limited to a single class used by this span element in a forum plugin. I want to style it to work exactly like the buttons of my forum. here's my current code: color: #000000; background: #808080 left center repeat-x scroll url('http://images.proboards.com/v5/gradients/darkness.png'); padding: 5px; display: inline-block; what can I … UI / UX Design html-css web-design | |
Ok I am building my schools Theatre website this year and for some reason whenever i try to move a certain block i end up just screwing up the whole picture, Here is the code. <!DOCTYPE html> <html> <style> body { background-image:url('file:///Users/dahank/Desktop/Theatre%20Folder.html/Curtains1.jpg'); background-repeat:no-repeat; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: … UI / UX Design web-design | |
i want to know to know about twitter bootstrapp clearly does any one have good and easily understanding tutorial UI / UX Design web-design | |
In the following code the Submit button actualy says "Submit Query" on my page but I can not find anywhere that I have written "Submit Query" in the file. Any ideas? I would like to change the second one. <html> <head> <title>Simiply Query</title> <link rel="stylesheet" type="text/css" href="mystyles.css" media="screen" /> </head> … UI / UX Design web-design | |
Hello, How to create a form border like this on focus: [form border](http://www.indovision.tv/mmc/index.php/agent) input[type="text"]:focus{ border:1px solid red; box-shadow: 0 0 1px red; } On type the redline and the font turns blue and the font turns black. How? UI / UX Design web-design | |
Hi there new to css and there is something I don t understand for example div.img img { display:inline; margin:3px; border:1px solid #ffffff; } what does the other img represent, what is this? I understand that the class called img is going to be applyed on the div tag in … UI / UX Design web-design | |
Hello, I create a website with a 1024 x 728 size. After I create the html amazingly, the horizontal space is more than 1024, larger than the background that I create. There are around 400 px more space to right side of the background which is filled with a blank … UI / UX Design html-css web-design | |
I am trying to make a multi level accordion menu out of my code... I have successfully created a single level accordion but i can't add a second or third level to it. Here is what i got: css: body { margin: 0; background-color: #fff; font-family: Arial, Helvetica, sans-serif; font-size: … UI / UX Design web-design | |
Ok I am having trouble with this homework assignment. I need to modify the code to sort by the number of pages rather than by chapte number. I get this part but the code I need to modify will not display correctly in my internet browser. All I see is … UI / UX Design html-css web-design xml ![]() | |
I am trying to align some text vertically with an image next to it, as in: [http://204.10.65.195/get_involved.php](http://204.10.65.195/get_involved.php) On the bottom half of the page, you can see that I have a bunch of images, each one with some text next to it. I want the text to appear in the … UI / UX Design html-css web-design | |
The below mentioned code uses css3 to develop drop down menu .I am unable to solove a problem which crops up while i click sub2 h4 menu it disappeare below body text can anybody help .Thanks in advance. <style> body,,container,h1,navmenu,ul,sub1,sub2,darrow,rarrow,header,leftnav,rightnav,footer { margin:0px; padding:0px; } #container { position:absolute; background-color:#FFF; left: 136px; … UI / UX Design html-css web-design | |
hi to master :) pls help, how can i use and fix all fonts thats not in safe font in web. UI / UX Design seo web-design | |
I'm almost done experimenting on how make the slideshow background clickable http://www.gracetous.org/test/ but I was hoping the mega menu dropdown will show up without adjusting the height since its responsive, is there any hope to this? UI / UX Design html-css web-design | |
Hi, I am new to html and I am reading the html and the css code of the website: http://www.quarryequipments.com/ I notice that if I make the browser size small, the li element in the navigation will not float left, how do I make it out? thanks. UI / UX Design html-css web-design | |
what is difference between _self and _parent.. expalin simply UI / UX Design web-design | |
Hi there I am working on my sister's website and she wants to start a video blog. She wants her youtube videos to be automatically posted on her website (just the newest one needs to be shown). Anyone have any code that might help with that?? Looked via google and … UI / UX Design javascript streaming-service web-design | |
I have a program where the user enters a sentence and the input is compared against an array when the user clicks the submit button the function "checkSentence() should be called but this does not happen. would really appreciate it if someone told me what's wrong wth my code <script … UI / UX Design web-design | |
Hello Everyone, I want to integrate google flags with my website, which translate languages on click event on same page. How-ever I successfully integrated google translate with dropdown option but want to integrate google flag translations on my website. Any type of help is appreciated. Thanks In Advance. UI / UX Design seo web-design | |
Im working with dreamweaver, coded in php On one of my pages, i'm trying to add 2 different print buttons each one printing a differrent portion of the webpage. For example, one print button is printing the first paragraph and the other print button is printting the second paragraph. I … UI / UX Design html-css ide javascript php web-design | |
I can't seem to find the answer, but I'm sure it's simple. I have a select drop down in a form and when I select it, it will start at the very last value instead of the top. How can I change this to start at the top instead or … UI / UX Design web-design | |
I am working on my latest project for a friend using a template and was wondering how to make the contact form work which had the coding already there. I have never used a contact form before and was just wondering what I need to do to make it functionable. … UI / UX Design web-design | |
I have a custom install of TinyMCE with multiple editable areas. when an area (div) is clicked, it becomes an active editable area (tinyMCE iframe). Everything works perfectly exept for in IE10 when I click on a div to make it editable, the page jumps up. I'm not sure if … UI / UX Design web-design ![]() | |
I am trying to make my webpage's content start about 10cm (3.93 inches) from both sides with a border around them. The border thing I have under controll. It is just the content spacing on the sides. This link: [Click Here](http://www.w3schools.com/css/css_table.asp) has what I want but I dont know I … UI / UX Design web-design | |
Hello, I am trying to create a navigation system like this: [Plan](http://www.innovation.web.id/Indonusa-gateway-menu.jpg) [Actual](http://www.innovation.web.id/Indonusa%20Nav%20Actual.jpg) How to create navigation like the design plan ? Now, what I have is like the actual (the website still in the localhost) navigation.php <link href= "css/nav.css" rel="stylesheet" type="text/css" media="screen"> <div id="navigation"> <div id="logo"><img src="images/logo2.png" width="160" height="60"></div> … UI / UX Design web-design | |
I'm not sure if this is an intelligent choice or not, so decided to ask the most knowledgable group that I know... I have a website that I created, and I need to do some SEO work on it.. (not my forte) What I was thinking about doing was creating … UI / UX Design web-design | |
Besides Wordpress and Joomla, are there any other free CRM or CRM like sites out there? I am looking to get away from Joomla and I am not a big fan of Wordpress anymore. Was wondering if yall knew of any others out there? UI / UX Design web-design wordpress | |
Hi, good day, Are there any plugins (free or commercial licensed) with affiliate programs that is able to create a way for members to be able to somehow refer their friends via email/facebook and if that friend signs up, they get a free month of membership. ---------------- Example Scenario: 1.) … UI / UX Design web-design wordpress | |
This is just a simple image fade. This is the HTML: <a href="#"><img src="#.png" class="fade"> Pretty simple, right? UI / UX Design web-design | |
I'm designing a project website using ConTEXT, some of my borders, division and other elements are completely out of their places. I tried outputting it to different computers with different size of monitors and of course with different resolutions. I'm no expert when it comes to this but how can … UI / UX Design web-design ![]() | |
Hi... i need some help. I have a .jsp file and a div tag containing h1 tag. <div id="header"> <h1 class="header1"><fmt:message key="application.title"/></h1> </div> <div id="login"><jsp:include page="/WEB-INF/common/login.jsp" /></div> here my css file: #header{border-bottom:1px solid #999;margin-bottom:10px;height:10px;width:100%; background: transparent url('../images/test.png') left top no-repeat; background: transparent url('../images/test1.jpg')right top no-repeat; } my problem is the … UI / UX Design html-css web-design | |
so i have the following css stylesheet [Click Here](http://www.jocurigratisonlinenet.ro/default.css) and i want that `#footer{}` and `#copyright{}` to stay at the bottom of the page all time. How can i achieve that? UI / UX Design html-css web-design | |
Hello friends i'm new here, there is a question bugging me for some time i cant make my mind of it. I love webdesinging and its a passion i want to make a career of say freelancing as i have a decent job, but still i want to persue my … UI / UX Design web-design | |
so if you go to my webiste here http://theirondoor.x10.bz/V2/Index.html you will notice under my Footer there is a big black section how to i get rid of that because its not in y html and i was wondering it might be in the css plz could someone look plz ;] … UI / UX Design web-design | |
hi guys, I want to install wordpress on my pc ( i have windows 7), but it says that it is already installed, even though it's the first time I try to install it. I reach to the point that it asks the password for the wordpress for the site … UI / UX Design web-design wordpress | |
Hello, When in my page an e-mail to contact is sending it take some time. How i can put the bar that informing the user that the e-mail is sending and when the message is send to do another animation and then redirect to another page. I hope you unterstand … UI / UX Design web-design |
The End.