VladimirKrstic
-
100% height of child when height of parent is not set?
@JTParrett Perfectly, does exactly what i wanted. Just gave him (right: 0) because i had (float: right) on child. Thank you man. @wolfcry911 Yup, child was floated. @Paulie_D This is not a main content, it is just some kind of side bar for social…
-
Detect on what page are you with jQuery
@JohnMotylJr @CrocoDillon Cool, thank you. :)
-
Detect on what page are you with jQuery
@JohnMotylJr Thank you man i owe you a drink. Still i had to change one line to make it work. Your code works in Codepen but don't works in browsers with this line it's vice versa. a = a.substring(a.lastIndexOf('/')); Thanks a…
-
Detect on what page are you with jQuery
Thank you @JohnMotylJr it help me understand a bit how it could be achieved but still I didn't make it work. :(
-
Detect on what page are you with jQuery
Is it possible that if a's href value "index.html" matches file name of the page you are on - "index.html" class is added to a?
-
Detect on what page are you with jQuery
File name I think will be most appropriate like index.html, contact.html...? But URL, page title will be fine too. EDIT: and navigation is structured nav/ul/li/a
-
TypeKit vs Google Web Fonts
There are lots of fonts on Google Web Fonts that don't render nicely but there can be found pretty good fonts... And as it's free, easy to use and good on performance it's pretty cool and must for all web designers. Typekit has more …
-
Design Idea - Windows 8
Well it's not a good idea now i can say too. I thought you need it for some not that "serious" project. For fun or something. But for your own portfolio don't do it. Not because of legal issues but because of you and your work. D…
-
Design Idea - Windows 8
@chrisburton You are right, it would not benefit him. I don't expect that he plans to do any serious project that way. Think that's just for some small site, right @chester ?
-
Design Idea - Windows 8
You don't have nothing to worry about. Square is not something you can copyright. Thought Apple don't think so. But i don't give a fak about marketing fagz. Just don't use Sagoe font and you'll be fine.
-
Traditional vs CMS site?
@Melindrea I like to have full control. :) As you said there are stuff that those CMS can help you a lot. And I'm not against them as probably sounded in my previous post. But as @kmj2318 is pretty new best decision for him will be to do all d…
-
Any opinion on this design?
For a lawyer site and your very first is pretty decent. I can say that only bad thing is typography. Change font! Give text a little bigger left/right margins. Increase type height and line height. You can go on safe decision and use OpenSans font.…
-
Opera on WebKit
@chrisburton I can't say that for sure, word "fact" was a little more there. :) IT experts say that for IE10 and i believe them. I can bet that you bet that IE10 isn't freaking faster than Chrome as most people believe. Well it …
-
Opera on WebKit
That must explain the 57 security holes they fixed yesterday. :) That's good i think, they are working on security. :)
-
Traditional vs CMS site?
@kmj2318 My opinion is that every good website deserves his own custom CMS. Or no CMS at all if it's small website. If you know HTML, CSS, JS you will have no problem to learn a bit of AJAX, PHP or ASP. Don't poison yourself with Wordpre…
-
Opera on WebKit
I don't disagree but look how long it took to come out. Rate of release is issue, yes. One year release cycle is though big improvement for Microsoft. Hopefully they will push that rate up soon on a half year releases or something for IE. @Sg…
-
Opera on WebKit
IE took over from Netscape Navigator didn't it? With quality or with bundle with Windows? I didn't used computers at that time (was young) but i can say that IE probably started like a better browser, gained marked share and then star…
-
Is it possible to ignore a specific style on style sheet for a specific page?
@espellcaste Class will do of course, but it's not right way to be done. ID is for single use right selector. It helps you to know when you see it "hey this is used just once, on one place". And @Dami needs exactly that. @traq Oo? …
-
Is it possible to ignore a specific style on style sheet for a specific page?
You need to add id on that page, on that element like so: "" And in CSS style that element like so: "#nameOfId { /* here add properties like... */ border: none; }"
-
How to change SVG fill color with jQuery on hover?
Nah, it works without . It's like so:
-
How to change SVG fill color with jQuery on hover?
I didn't tested it in older browsers. Chrome 24, Firefox 18.02, Internet Explorer 10 and Opera 12.14 are all fine with it. Thought only Firefox can make CSS Transition on SVG attriributes. Chrome Canary 26 do the job too.
-
How to change SVG fill color with jQuery on hover?
I've done it just with CSS with just one rule. On a very simple and smart ways CSS can handle lot of things. :) Here is code. a:hover path, a:hover polygon, a:hover circle { fill: red; }
-
Rate my site redesign (WIP)
I have to agree partially with @jurotek . It's not that big chaos as he says, but could be better. Make some gradation of content. Something like five rows each with a different size so most important or newest content should be bigger and less…
-
Can you review my new site please?
Don't put fancy stuff just because you can do so. My advice will be to disable animations on clouds and balloons. Lock airplane on center and animate banner like it's waving so you get imitation of movement. Maybe you can animate airplane …
-
Right way to put SVG code directly into HTML?
There should be of course SVG element(don't know will it work without), i wished to ask with what element you should wrap SVG element. Like OBJECT...? Document didn't pass validation in Brackets with JSLint. Now I did validation in http:/…
-
How to change SVG fill color with jQuery on hover?
Well i did it myself. I was failing on most stupid thing as it mostly be in coding... and in life. :) I didn't targeted elements as they should be targeted. Here is the code if someone needs him. $(document).ready(function() { $("a&qu…
-
Dream to become a Web Designer/Developer, just don't know where to start? Please help!
First steps should be with books! These are some i can recommend. http://www.abookapart.com/ . Short but get to the point. There is a lot more good HTML5, CSS and web design books you can start with, search web and find some people recommends. Afte…
-
Which font sizing is best? EM vs PX vs %
I didn't read all comments but too answer in general: relative size of content is only relevant for future. So drop your Pixels and adapt Ems. You just can't design app or website that will look great ok 4k tv and 500px mobile phone. Zoomi…