NForte
-
LESS/SASS Highlighting with Highlight.js
Problem solved! I was actually able to get LESS highlighting working, but a different way than I originally expected. It turns out that the LESS Website has a great little highlighter that basically does what Highlight.js has done. I was able to in…
-
Change font and colour of Audio Player
Hey, You can apply a css rule to the parent div that applies the styling to the text. For example, I see that you have a parent div of the song title with a class of "track" as well as some other ones like "playable", "show-…
-
Display Wordpress Search Query?
Yes, yes, I actually was able to solve this myself!!! I had posted the same question over at the wordpress.org forums. You can get to my original post here; someone else besides you had this problem. It seemed like there weren't a lot of respon…
-
WordPress: Add a class on an li for "current category"
Ok, so here's what I was able to come up with. Basically using WP's conditional tags, I created an IF statement that checked to see if the current category was not equal to the ID of the current category. Therefore, if there was a match fo…
-
WordPress: Add a class on an li for "current category"
I would, but unfortunately, I'm having trouble dealing with having to escape the symbols. =(
-
WordPress: Add a class on an li for "current category"
After experimenting for several hours, I was able to find something that worked.
-
Motion Blur Possible With jQuery?!
Hi- My initial impression when reading this is that it is pretty much impossible to do this sort of thing with jQuery alone, as you are just positioning elements on the page, and animating their position by injecting CSS rules via javascript using j…
-
Custom Post Types: Where is my ".entry-meta"?
Was able to fix simply by using the_terms() or get_the_term_list(). Those articles can be found at: http://codex.wordpress.org/Function_Reference/the_terms, and http://codex.wordpress.org/Function_Reference/get_the_term_list
-
Custom Post Types: Where is my ".entry-meta"?
BTW, here is an image to better describe what I'm looking at: http://files.noelforte.com/public/missing-info.png
-
Firefox Ignoring -moz-rules?
Thanks for the help. I was able to fix the problems by doing a Google search and found out that Firefox actually draws outlines outside of the box-shadow, whereas all other browsers draw outlines inside the box shadow. Anyways, good stuff to know. A…
-
What is the deal with !important
In terms of specificity, I'm assuming you're referring to the CSS specificity hierarchy. Use your bowser's web inspector and make sure that your CSS isn't being overridden by anything that is more specific to the elements that yo…
-
Floating Elements and Fluid Dynamic Height Layouts
Thanks for the tips! I'll try these out and let you know what I come up with. It might also go on Codepen.
-
JQuery Css width of a div returns undefined.
Good to know. Thank you! :D
-
JQuery Css width of a div returns undefined.
fixed it. apparently this is the wrong way to do it: Demo and this is the RIGHT way: Demo if you do do it the first way, by loading the scripts in the head,…
-
JQuery Css width of a div returns undefined.
Ok, fixed that, but it's still returning as undefined. This is what the javascript looks like now, but the HTML and CSS are the same as above. var cssWidth = $('#box').css('width'); alert(cssWidth);