Jeager
-
hNews Microformat
Yes I know. But thanks. If I was unclear, I am asking if I should use the article tag to post the "page" post type into. If it is considered to be an article or not. I guess the title does make it seem unclear. "The article element r…
-
Thoughts on design and copy
Didn't read through all the comments but heres my input as a designer and dev: You are going for a flat look, so why the drop shadows? If you want them, just use them as hover states. But the first rule of flat design is designing flat. Shadow…
-
What do you suggest?
Honestly the ads you have right now are pretty lame. Sorry to be harsh. No real visual movement through them, type needs a lot of work, and your just adding thick blocks to all of them to put the type on. Some suggestions: Stop centering all the te…
-
Grids. Responsiveness. And IE
Figure I'd update - but please add to anything or any of your personal experiences. I had seen and downloaded it before, Roots, but they have had a massive update that slipped past me. Uses bootstrap and html5 boilerplate. Also organized like …
-
Rough Design critique
I'd make the nav 100% width. Also a popular thing right now are divisions in content. So for that welcome area, have that be one module rather then running the full length of the page. you could even run it 100% width and have the sidebar over …
-
Portfolio - Seems like everyone else is
True enough. I was thinking of ways to add some more imagery or something. Didnt really sit and think about it though. I'll have to have add some icons for the languages I know and whatnot. Thanks!
-
How to do responsive design?
Bootstrap might be a little robust for someone just starting in responsive design. Check using percentage widths, the correct meta view port tag, and media queries. And read! There is a TON of information just waiting to be utilized.
-
About e-comerce website, what do I need to know?
If you are buying a theme, it should come with a shopping car loaded and you will have to read the documentation for it. While I havn't delved into that myself, I would just try to get as much info before you buy them to see how easy they have …
-
JS not enqueueing or registering correctly
Still not sure whats up. If I add to the footer it works, but this register/enqueue isnt.
-
php resize image
Are you talking about thumbnail re size or the actual image? There are basic options for cropping in the media area if that helps. Would reduce the image file size instead of scaling all of them down. Otherwise you can just put a max-width: ///px an…
-
Testing responsive design?
Also screenfly: http://quirktools.com/screenfly/ Usually I just re size my browser window though. Not a totally fair assumption of course, but works for the majority of the testing needed.
-
Working locally with WP => Best way to move?
Thought so. from php admin - exported the right database. Maybe I missed something? I'll have to check later.
-
Working locally with WP => Best way to move?
Guess for now I can re list everything, however I'd like in the future to know an easier way. What I need: All custom post types, plug-in data, and uploads? I think that is all the stuff that didnt quite work
-
Working locally with WP => Best way to move?
Plugin works great it seems. Now the problem is where is all my plugin data and all my custom post types and posts! heh
-
Looking for a plugin for wordpress that filters images like isotope
I am actually probably going to attempt this same thing soon. I imagine it will work like this: Custom post type of "whateverPost" a loop query that uses post_type from "whateverPost" and uses the post_thumbnail Add a div arou…
-
WordPress: Creating Themes from scratch vs Using Starter Themes...
Ha. This is actually exactly where I am at. I have been doing my own custom themes for about 8 months now but still wonder if I am just better of re-styling another theme. I ended up creating my own boilerplate for WP and have a bunch of snippets th…
-
Post area not linking to posts
Thanks yeah, I wasn't copying my direct code, they are all inside the loops though. I honestly just forgot that WP is a wizard and automatically detects a post as a post, and therefore uses the chain of templates down to index. I cleaned things…
-
Post area not linking to posts
I am only using my index file. 3 loops in it. Then the header/footer Edit: Just going to mark this solved. I just flew past making the single.php.. Forgot how magical WP was and was thinking way to deep.
-
Making jQuery stop working at a certain page width
Thanks but no go on that. Edit: Actually, it works from going from the smaller size to larger. But not the reverse.
-
Making jQuery stop working at a certain page width
Thanks! Works well, however you have to reload if the browser is manually re sized. I'll use this, but is there some way around that?
-
hovering divs to push others and display a hidden div.
Actually just got it working. Mistake was in the markup. http://codepen.io/anon/pen/GEHol Fixed version for anyone who might need to see the same thing. Trick in CSS is to use the "+" selector. Making the .image:hover target the next chi…
-
Jquery WP issue
I can not get it working with your method. It only happens every other reload or clearing of the cache. With the following code, it works perfect the first try and every try after... So Not sure whats going on. if (!is_admin()) add_action("wp_…
-
Jquery WP issue
Okay sorry it took so long to get back to you. Been a rough week. You enqueue the jquery ui, but I dont see the command to load normal jquery. This is what I have right now. function portfolio_script_manager() { // wp_register_script template …
-
Jquery WP issue
Went through looking for the best ways to load it and this seemed to be it. Not sure what else you would do.
-
Jquery WP issue
/* * Calls Jquery */ if (!is_admin()) add_action("wp_enqueue_scripts", "my_jquery_enqueue", 11); function my_jquery_enqueue() { wp_deregister_script('jquery'); wp_register_script('jquery', "//ajax.…
-
Jquery WP issue
So I tried both of these ways. They both worked in the fact that the js files are being loaded into the resources but won't do as intended. Do I have to somehow hook them into the page again? I'm using a custom scroll bar and while it work…
-
Jquery WP issue
I hate to just ask for the answer, but how would I? I found that script on digging into WP. I would imagine I would have to enqueue the other 2 scripts after? so like... wp_enqueue_script('js/myscript'); ?
-
Jquery WP issue
When doing a "view page source" the two scripts I am doing are first. However its just showing the header/index/footer in the correct order. I am calling the jquery library through the functions file. When looking at the resources through …
-
Fixed position problem
Exactly. It seems the only difference is a static width verse a %.. Thanks though!
-
page loop issue
Im sure you can. My last comment though is working. I was just following through giving an answer to my own question in case someone stumbles on it looking for an answer