-
Replied To a Post in image
A semicolon is only necessary if there will be another declaration after the other. If there is only one declaration, or if it's the last declaration in a CSS block, … -
Replied To a Post in backslash on link element
Indeed a forward slash (or trailing slash), of course! @stacy_2 it has more to do with valid XML then HTML. XHTML (X stands for XML) disappeard slowly in favor of … -
Began Watching backslash on link element
does the link element have a closing back slash or not i.e is it (1) <link href="css/style.css" rel="stylesheet" type="text/css" media="all" /> or (2) <link href="css/style.css" rel="stylesheet" type="text/css" media="all" > -
Replied To a Post in backslash on link element
If you use a (X)HTML strict doctype then you will have to use a closing backslash, but with HTML5 doctype for example you can use the second as well. -
Began Watching Controlling Responsive positioning
I have a website that looks okay at 1300 pixels:  At 1200 pixels problems start to occur:  At 550 pixels I'm losing text and Menus. , you can use Dropbox as a server to show your static page(s) and its assets and thus code to us. … -
Replied To a Post in Family Tree - Horizontal Display Using CSS
Have to agree with @diafol. You have to think of more situations when there is not enough space for a horizontal family tree. And although a dl is better for … -
Replied To a Post in multiple domaoin extensions
I figured out how to do this. I need to point the DNS of the other extensions to the hosting of the .com domain. Or something like that... I will … -
Edited multiple domaoin extensions
Hi peeps, Not sure if this is the right forum to ask, but I've been asked to look into a situation for a client. They have a .com domain for … -
Created multiple domaoin extensions
Hi peeps, Not sure if this is the right forum to ask, but I've been asked to look into a situation for a client. They have a .com domain for … -
Began Watching multiple domaoin extensions
Hi peeps, Not sure if this is the right forum to ask, but I've been asked to look into a situation for a client. They have a .com domain for … -
Replied To a Post in Family Tree - Horizontal Display Using CSS
I'm doing this in between things for you, so have a bit patient. I have the HTML mark-up in place and will do the CSS, but it is more challenging … -
Replied To a Post in Family Tree - Horizontal Display Using CSS
Using a definition list would be in my opinion sematically more correct then using an unordered list (ul). -
Began Watching Family Tree - Horizontal Display Using CSS
hello, i have ul li html structure and i am trying to make tree horizontally My Code Below please suggest me how can i do using css ? <div class="tree"><ul><li><a>SIRE: … -
Replied To a Post in Family Tree - Horizontal Display Using CSS
Well... I can use a little challenge, so I'll see if I can pull it off. My goal is to use no fixed widths or heights. Content should dictate these. … -
Replied To a Post in PHP code not being interpreted by DW and appearing as text on webpage
No sorry... it's been ages for me since I have used DW and perhaps this thread is better off in the PHP forum. -
Began Watching i wish to make my nav buttons clickable
<a href="#"> Home </a> <a href="#"> Video1 </a> <a href="#"> Advanced Warfare </a> <a href="#"> Video 2 </a> </nav> those are the nav buttons i have and i want video … -
Replied To a Post in i wish to make my nav buttons clickable
It's not really clear to me what you exactly want, but my guess is you want to open an image or a video not on a seperate page, but in … -
Began Watching To force ignore the css hover effect only in iPad
Hi Folks, I have a tabset created using jquery. Each tablabel is an image. On hovering over the images, it changes to another image and on click of any image … -
Replied To a Post in To force ignore the css hover effect only in iPad
That's just how it works I'm afraid. Hover is not a gesture for touch screen devices, so it will become a 'click'. There is also unfortunately not a 100% reliable … -
Began Watching How to align text and shouty background?
I have project for school. I need to make responsive website for Mexican restaurant. So far I know, Mexican restarants are based really vivid and shouting colors, I wanted to … -
Replied To a Post in How to align text and shouty background?
The trick is not to put text ontop of it :) If you want to use these patterns, then use a solid background color for your text areas. -
Began Watching PHP code not being interpreted by DW and appearing as text on webpage
PHP code not being interpreted by DW and appearing as text on webpage. My Php code is below, this code is bolted into a html site(PHP file). However the code … -
Replied To a Post in PHP code not being interpreted by DW and appearing as text on webpage
You mean as text on the page in DW design view and/or live view, or just in the browser on your local machine? You will need to have a server … -
Began Watching HTML CSS3 setting disturbs on mobile browser
Hi Friends, After working for 2 days I finished my homepage design with HTML5 and CSS3 syntax. but when I open this on my Android chrome browser everything looks messy … -
Replied To a Post in HTML CSS3 setting disturbs on mobile browser
Optimzing your layout with CSS media querries to adapt for different screen sizes/resolutions is the way to go, but if you're HTML is created following best practices, then it shouldn't … -
Replied To a Post in horizontal scroll
If you give the tabel a width that's higher then the 1700px of the div, you will get a scrollbar. Here's your code with a table width of 3000px (I … -
Began Watching horizontal scroll
Hi, I am trying to create horizontal scroll and I wonder why it doesn't work. input_image.php <div style="width: 15px; overflow-x: scroll;"> HALLO </div> -
Replied To a Post in horizontal scroll
You will need to wrap "HALLO" in an element (paragraph or so) and give that element a width in order to force a scrollbar. You probably also need to make … -
Edited Allow me to introduce myself :)
Hello I'm Ralph and I'm a web designer which knows his way around HTML and CSS pretty good, but when it comes to real scripting languages then I could use … -
Created Allow me to introduce myself :)
Hello I'm Ralph and I'm a web designer which knows his way around HTML and CSS pretty good, but when it comes to real scripting languages then I could use … -
Began Watching Allow me to introduce myself :)
Hello I'm Ralph and I'm a web designer which knows his way around HTML and CSS pretty good, but when it comes to real scripting languages then I could use … -
Began Watching How to detect mobile being sideways?
I want to make kinda responsive design, problem is, my website is picture based and if you hold mobile vertically you see 2 giant bars above and below it. If … -
Replied To a Post in How to detect mobile being sideways?
There are specific CSS media queries to handle these situations. @media all and (orientation:landscape) { /* landscape styles in here */ } @media all and (orientation:potrait) { /* portrait styles … -
Began Watching browser back button to Previous page same Spot where it is clicked
Go Back to Previous Spot on PageI'm using list of page in one page sometimes I have a longer list of items. When the user scrolls down the page and … -
Replied To a Post in browser back button to Previous page same Spot where it is clicked
That anchor trick will work with a custom button, but not with the browser back button. I would look into infinite scroll together with HTML5 History api. There's a payed …
The End.