-
Began Watching How to put slice image into html?
Hi all.. I am a newbie in web programming and I have question how I can put my slice images html as background in html? I already slice it with … -
Replied To a Post in How to put slice image into html?
Don't save it in Photoshop as HTML. You'll get rubbish as you can see. Just recreate the the design with CSS and proper mark up. A lot of things you … -
Replied To a Post in IE9 text-shadow?
Would the text then be unreadable without the text shadow? > But I don't need to detect if it is supported or not, I KNOW that it's not supported That's … -
Began Watching IE9 text-shadow?
https://jsfiddle.net/yr2r4Ldj/4/ I've tried 5 different solutions, **FIVE** of them, and **NONE** of them work. I hear Microsoft laughing ever so evily around the corner while grinding hands against one another … -
Replied To a Post in IE9 text-shadow?
Who cares that IE9 doesn't get a text-shadow? Look into feature detection with [Modernizr](https://modernizr.com/) or the likes, create a decent fallback solution and move on! http://dowebsitesneedtolookexactlythesameineverybrowser.com/ -
Began Watching Prevent flickering of font between normal and bold state
I take two versions of Open Sans from Google Fonts' servers. Regular and a bold one. As soon as page loads, the font is shown nicely. The idea is something … -
Replied To a Post in Prevent flickering of font between normal and bold state
Try using the Google web font loader. http://publishing-project.rivendellweb.net/loading-fonts/ When using web fonts it's recommended to use a web font loading strategy such as Google Web Font loader or Font Face … -
Replied To a Post in centering the logo doesnt work heeeelp
Well, if it's only a few pixels then perhaps your logo image is not prepared properly? Also what's with the odd `max-width: 330.5%`? -
Replied To a Post in Fluid Design Question(s)
> The thing about this mark-up is that after testing it a bit it seems to perform as described, that is, is deals excellent with the mobile devices. Not sure … -
Began Watching Fluid Design Question(s)
I am using a template to learn more about fluid design My main confusion at this point regards how structure and size is defined. For example in the CSS, there … -
Replied To a Post in Fluid Design Question(s)
There's not a really a header tag used, but there's a div tag #header in the CSS & HTML. -
Replied To a Post in centering the logo doesnt work heeeelp
Can't you put the page online somewhere? -
Replied To a Post in centering the logo doesnt work heeeelp
No, he just said with only the CSS there's not much to help, but also linked to a good resource how to center elements within different scenarios. -
Replied To a Post in margin: 0; problem
Well if it is `input.wpi-button` then just set the margin you want on it in your child theme style.css. And as far as I know is the default margin of … -
Began Watching centering the logo doesnt work heeeelp
I have a problem with the CSS for the logo. I want my logo to be in the middle horizontaly every time but my logo isnt aligned with the centered … -
Replied To a Post in centering the logo doesnt work heeeelp
Don't double post with the same question! You've got already a good reply in your previous thread how to center elements. -
Replied To a Post in margin: 0; problem
Well... that depends. Has that element a class name? And do you have in your child theme directory a style.css file where you can override the parent theme styles? -
Replied To a Post in margin: 0; problem
Then only override the margin for that element in your child theme css. -
Replied To a Post in margin: 0; problem
Yeah, it's likely your layout will break if you reset it to 'auto', because like I said it will bring back the default margins that are set in the browsers. … -
Began Watching margin: 0; problem
HI I have this in wordpress css: * { padding: 0; margin: 0; } How can I disable `margin: 0;` in child theme? Thanks -
Replied To a Post in margin: 0; problem
Override it with this in your child theme style.css * { margin: auto } This will bring back the browsers' default margin of your elements. -
Replied To a Post in How to do something when the window stop loading in jQuery
What you put inside the load() event will *only* get triggered once the DOM and all assets (such as images, videos, iframes or whatever else you have on yout page) … -
Began Watching How to do something when the window stop loading in jQuery
I have this event handler for when the page is loading. It shows a preloader GIF image when the window start loading. $(window).load(function(){ $("#Preloader").css('display','block'); }); But I don't know how … -
Replied To a Post in How to do something when the window stop loading in jQuery
You have to show the preloader with CSS and hide it with `$(window).load()`, when everything has been loaded. $(window).load(function(){ $("#Preloader").fadeOut(1000); }); -
Began Watching Is designing websites for IE9 meaning, that it's compatible with everything
I have following (really long) statement: > When I develop website that is entirely compatible with Microsoft Internet Explorer 9, and make it work foulless, I'll make sure that website … -
Replied To a Post in Is designing websites for IE9 meaning, that it's compatible with everything
This is how I approach any project: 1. Define the core functionality 2. Make that work without any bells & whistles (even if the UX sucks) 3. Enhance -
Began Watching SVG Element Size
Anyone familar with how to shrink the width & height without effecting the size of the SVG. As has a huge space around the SVG file and I must get … -
Replied To a Post in SVG Element Size
hericles is right. Give the containing element in your CSS the same dimensions as the svg's viewBox size and sharing your code would be indeed handy. -
Began Watching CSS selector menace (again)
--- (nevermind, I'm just not good enough for it, I'll go for less appealing solution that I know) --- -
Replied To a Post in CSS selector menace (again)
If you write `a.submenu ul li` you say that `ul` is a descendant of `a.submenu`, but that's not the case in that markup. That `ul` is an adjacent sibling of … -
Replied To a Post in Need help with development of HTML+CSS3-only dropdown
Great! I've noticed I closed in that example markup an ul tag not properly, but I've got the basics in a pen for you so you can see how and … -
Replied To a Post in Need help with development of HTML+CSS3-only dropdown
My bad... I've pasted the wrong link at EDIT2 https://jsfiddle.net/gentlemedia/c16vnhLb/4/ And indeed visibility doesn't take space. > Any suggestion on what I could start building to get links into such … -
Replied To a Post in Need help with development of HTML+CSS3-only dropdown
> Yes, I know, that's why I animate opacity. No, you transition 'all' which includes also the `display: none` that you change on hover to `display: inline-block` > Doesn't work: … -
Began Watching Need help with development of HTML+CSS3-only dropdown
https://jsfiddle.net/fzbx09qL/1/ Having above code. This is as far as I've gotten. I need someone to instruct me on three things. First off, how do I make sure it appear smoothly? … -
Replied To a Post in Need help with development of HTML+CSS3-only dropdown
You can't transition the display property, so instead you could use `opacity: 0` in combination with `visibilty: hidden` or hide that div off-screen with `top: -100%` (for example) and on … -
Replied To a Post in smoothscrolls doesn't work with 100% height?
okay... I see now your #clicked anchor and the section with the id #clicked. -
Began Watching smoothscrolls doesn't work with 100% height?
I am trying to make the smooth scroll effects with this basic script for this site: http://greaca9.ro/test/index.html $(function() { $('a[href*="#"]:not([href="#"])').click(function() { if (location.pathname.replace(/^\//,'') == this.pathname.replace(/^\//,'') && location.hostname == this.hostname) { … -
Replied To a Post in smoothscrolls doesn't work with 100% height?
Looking at the source of your HTML, I don't see the sections with the ID you want to scroll to. If you have for example this: <a href="#featured"><i class="glyphicon glyphicon-list-alt"></i> … -
Began Watching Browers show code instead of the page itself
I have seen this question posed everywhere but not with the answers that solved it for me. So I played and played and discovered, da dah, the problem. Let's say … -
Replied To a Post in Browers show code instead of the page itself
What the heck?!? -
Replied To a Post in CSS3 flip transition
I see what you mean now and that's because you set the hover on `.flipContainer` and this `div` fills the whole width of the page and therefore the effect only … -
Began Watching CSS3 flip transition
In this HIML I am flipping an icon on a hover using CSS3 transform. When this HTML is run, the hover is contained in the vertical dimension but not in … -
Replied To a Post in CSS3 flip transition
With this `transform: rotateY` you rotate over the y-axis thus vertical. To flip horizontal you'll need to rotate over the x-axis; `transform: rotateX` -
Began Watching Adding a deleting rows
Hi, I am writing a code to dynamically create a table and then add delete and modify records. The table is created from an existing database table. How ever the … -
Replied To a Post in Adding a deleting rows
@Avinash_7 - This thread is 8 years old and the OP hasn't been here since, so don't resurrect old threads from the death! -
Replied To a Post in Webapp media screeen problem
Why do you still use device-width media queries? Just forget them. You don't need them, unless you're developing something for specific devices and their screen resolutions. Styles in device-width media … -
Replied To a Post in web design
The OP is not looking to build a menu. Re-read the question! -
Began Watching web design
Hello..please I need help on making my menu bar on my web page remains fix at the top whenever you scroll down the page -
Replied To a Post in web design
Look into the CSS property `position: fixed` @RudyM - don't you think it's an overkill to use bootstrap to solve the OP's problem? -
Began Watching web design
Hello..am learning web designing have learnt html and css,please I like to learn step wise,so which other package do I continue with,because now I lime to create a responsive website...
The End.