-
Replied To a Post in I need some help to make a very basic page, may take 5 minutes of ur time
Not sure what you're really after, but here's a blank HTML page :) <!DOCTYPE html> <html> <head> <meta charset="UTF-8"> <title>Blank Page</title> </head> <body> </body> </html> -
Began Watching Div problem
Hi , I try to creat Chess table in HTML , I use DIV to create Content.... I create everything , and as always I have only one problem and … -
Replied To a Post in Div problem
Indeed! Text-align: center will only center the chess piece inages horizontally. If you want them vertically in the middle as well, you could use this neat trick, but it doesn't … -
Began Watching html and css3 display four images in a row
trying to display four images in row. html code` <section class ="selection-meals"> <ul class="meal-showcase"> <li> <figure class="meal-photo"> <img src="resources/css/imgs/1.jpg" alt="meal1"> </figure> </li> <li> <figure class="meal-photo"> <img src="resources/css/imgs/2.jpg" alt="meal2"> </figure> </li> … -
Replied To a Post in html and css3 display four images in a row
It's caused by a typo. In your HTML you have `meal-showcase` and in your css `meals-showcase`. And on a side note; if you float an inline element, it turns automatically … -
Replied To a Post in Changing text with no html tags
I really thought that the asterix (*) stood for selecting all HTML elements in the document, just like in CSS, so I didn't get that line either :) Thanks for … -
Replied To a Post in Changing text with no html tags
My bad with the jQuery... I got you mixed up with another member of the forum I guess. Interesting aproach with the uderscore var storing all elements from the document. … -
Began Watching White space
Hello Experts I have following codes <html> <head> <style type=text/css> #box1{ margin:0 auto; border:1px solid green; width:400px; height:70px; color:blue; padding:10px; overflow:hidden; background-image:url(images/DREAM.JPG); background-size:100% 100%; background-repeat:no-repeat; } #logo { width:120px; height:70px; … -
Replied To a Post in White space
The white background color is in the image, right? Open up your photo editor and remove the white background. -
Began Watching HTML/CSS - Perhaps if some has time they can look this over
I am issues involving the CSS for my HTML index page. I will be honest, I did not write all of the mark-up/code so now I am in discovery/repair mode … -
Replied To a Post in HTML/CSS - Perhaps if some has time they can look this over
As far as I can see some inputs that are still white has no `class="field"` and on others you have `type="field"` which should be then `class="field"`. I also see that … -
Replied To a Post in Changing text with no html tags
No, it was not like that. I wouldn't dare to underestimate your JS/JQuery skills, because I noticed already your deep understanding of this. I looked at your snippet several times … -
Replied To a Post in Aattributes
@Dave - I'm not the OP :) I guess we replied at the same time to his question. -
Began Watching Aattributes
Why lowsrc attribute used in Img tag??? -
Replied To a Post in Aattributes
The lowscr attribute has been deprecated for a while now and is obsolete in HTML5. There is now also the new srcset attribute to handle different resolutions of the image. -
Began Watching Make Javascript countdown doesn't reset when page refresh
Excuse me, I want to ask how to make javascript countdown doesn't reset when page refresh?? thank you in advance -
Replied To a Post in Make Javascript countdown doesn't reset when page refresh
Or load your pages dynamically via AJAX (plus HTML5 History API) in a container (div) and place the counter oustide this container. Look at this demo. Audio player keeps on … -
Began Watching Help: adding a static Image on footer using css
Hi everyone Please I would really appreciate if someone could help with a code on how to add an image to a footer using css: Here's is my footer code: … -
Replied To a Post in Help: adding a static Image on footer using css
It's obvious **newbi11** is after all not interested in an answer or help, so better stop wasting your time and efforts on this thread. -
Began Watching When Panel is Opened, It Jumps to the Left
There is an issue with a page I am developing that I just noticed. Please take a look at the page: http://redlinedown.com/index700.html# On the top, black panel bar, notice "Log … -
Replied To a Post in When Panel is Opened, It Jumps to the Left
It would be helpfull to mention in which browser you see this, because in Chrome on the Mac it looks okay. -
Began Watching i need help with the structure of my website
Hello everyone i really need some help about my website structure.. i have almost the full website but the structure is too bad and i cannot continue working... is there … -
Replied To a Post in i need help with the structure of my website
Stefan, everybody here wants to help you with issues you have while developing or designing your site and will be happy if they can guide you in the right direction, … -
Began Watching CMS Web Design
Why choose CMS for the best website development? And which solution would be the best? Is it Drupal or Joomla or Wordpress? -
Replied To a Post in CMS Web Design
I like [Pearch CMS](http://grabaperch.com/), because I'm a web designer with little PHP skills and I want something easy for myself and my clients (mainly small businesses that don't need a … -
Replied To a Post in Changing text with no html tags
@TroyIII & @diafol: I saw your solution already which is indeed too edgy, my eyes hurt ;) Just wanted to react on matrixdevuk solution. Nothing more, nothing less. -
Began Watching Display div in Center
Sir I am using these codes <html> <head> <title>Center dive</title> <style type="text/css"> html body{ margin:0 atuo; margin-top:20px; } #main { margin: 0 auto; background-color: lightgreen; overflow: auto; text-align:center; height:400px; width:400px; … -
Replied To a Post in Display div in Center
Since you have all width and height values, it's easy to do some little math and position `#box` with some top and left margins in the middle of `#main`. No … -
Replied To a Post in Changing text with no html tags
Adding a span tag with an ID for the js is not cleaner then without it. The selector engine is a tiny bit quicker with finding 'Log In' like this … -
Replied To a Post in CSS Desktop/Mobile
I was also not paying attention. It's the img that you have to select, so like this: .picture-center img { max-width: 100%; height: auto; } If the div `.picture-center` is … -
Began Watching CSS Desktop/Mobile
Hi there, I have the following code to define the first article on the website I'm developing Strong-Links.org <article id="me" class="panel"> <img src="/images/Strong-Links.png"> <a href="#work" class="jumplink pic"> <span class="arrow icon … -
Replied To a Post in CSS Desktop/Mobile
You should have not a `=` but a `:` in your `.picture-center` CSS block and the height should be `auto`. Perhaps `width` should be `max-width` as well, but I don't … -
Began Watching A Small Problem Involving a Label
Hello. I am having a small problem involving a text label not displaying correctly over a field. It was fine until about a week ago; I believe I must have … -
Replied To a Post in A Small Problem Involving a Label
Like JorgeM pointed out you will need wrappers around the City and State elements (label + input) together in order to line them up next to each other. But not … -
Replied To a Post in Website can't scroll down..bugs?
Good stuff! I see there is now a horziontal scrollbar. To get rid of that is to remove the `margin: 0 2% 0 2%` on #header. It's pointles to have … -
Replied To a Post in Website can't scroll down..bugs?
Ok... here's what you could do in your CSS: 1. `html, body` - remove the overflow property on these tags 2. `#content` remove the height property 3. `#content` change `overflow: … -
Replied To a Post in Website can't scroll down..bugs?
The default value of the height property is already 'auto', so it's not necessary to declare it and I'd recommend to not set any heights to your elements. Well... 99% … -
Replied To a Post in Changing text with no html tags
@Matrixdevuk - I see now you also changed the HTML by wrapping 'Log In' into span tags, but the OP said he did not wanted to alter the HTML. -
Gave Reputation to matrixdevuk in Changing text with no html tags
Honestly, if you want it to be clean; add something like this: <!-- HTML --> <div class="wpb_wrapper"> <span id="login-text">Log In</span> <div class="login" id="theme-my-login1"> ... </div> </div> // JS $("#login-text").text("Something..."); // … -
Replied To a Post in Website can't scroll down..bugs?
Your #content div. Why did you made it so high (1560px)? I understand what you were after, but then you could better use the default scrollbar (on the body) and … -
Began Watching Website can't scroll down..bugs?
www.kerennma.com This is the website. When i'm on the "Work", the page doesn't scrolls down, it only works when i click on to another tab and come back to this. … -
Replied To a Post in Website can't scroll down..bugs?
In which browser (version) you have this issue? I checked in Chrome on the Mac and I can scroll down on the work page. Edit: I do see that the … -
Replied To a Post in Make submenu in tab menus hover over page content
@JorgeM - Good point about 'arrive at the solution on your own' and I was not sure if you tipped the !important as the solution or just as a quick … -
Replied To a Post in Make submenu in tab menus hover over page content
I know it's marked as solved, but I think adding !important is a bit too easy to solve this. I mean with easy... adding !important should be your last resort … -
Began Watching Make submenu in tab menus hover over page content
I have this dilemma where I need to make my sub-menus hover over the other content on my page but I cannot seem to do this, I have searched and … -
Replied To a Post in Make submenu in tab menus hover over page content
In the CSS snippet here on line 19 there's a z-index set to '1'. Change this to a higher value... for example 1000 to see if will stay on top … -
Replied To a Post in Bootstrap nav css
Well, I don't see a class 'navbar-default' assigned to the mark-up of that nav, so it's obvious it's not dong anything. Use the browser developer tools to investigate (in the … -
Replied To a Post in Bootstrap nav css
Not sure why the link to the unminify tool gets a strikethrough and a message that it is a broken link. It's a working link, so just follow it if … -
Began Watching html code
I write a code in html and want to create button that upload a file.I use the following code but it show button name choose files but i want the … -
Replied To a Post in html code
You can't change it through your markup. You need a hacked solution. There are quites some workarounds either through CSS or JS, but each with their own pros and cons... …
The End.