gilgimech
-
Mobile auto width not working on some pages.
If I would do it, I would make the width 98% instead of auto. Try that and see if it works for you.
-
Multiple h1, h2, h3 Selector Issue when also have separate css for h2 tag
The problem is you don't need the style element tag in external css files. Just delete the and < /style> and it should work fine.
-
IE no the rest is okay
It could be the behavior:url(../js/PIE.htc); I've found if you use css3Pie too much, it just breaks the css. I've just stop using it all together because of that.
-
Editing live with SASS
Well, you shouldn't have to upload your SASS files to the server. SASS doesn't have any use on a server. It's only for pre-processing. Unless you need to store you SASS files there for some reason. It's better to develop locally…
-
Vertical Menu -> Horizontal Menu?!
Try this in your css .navigation{ list-style-type:none; } .navigation li{ float:left; }
-
Populate dropdown from dynamically populated dropdown
I'm not sure what you mean by parent menu ID. This is actually for a form not a menu. For some reason it doesn't show all my code. It should look like this. But every row has a loc_id ID which is what I want to use to populate other se…
-
Wordpress Custom Form Error
Thanks I'll give it a try. I'm not a php expert either if you couldn't tell.:)
-
WordPress : Help with displaying data from custom meta boxes
OK, yeah I'm stupid. For some reason, I was got it in head that I had to work outside the loop.
-
WordPress : Help with displaying data from custom meta boxes
No, but I may just be stupid. I just thought of something. I'll let you know if it works.
-
Turn Function into a Class
Yeah, that doesn't work. I've already been down that road. I think I'm just going to go back to using it as a plain old function. This is taking up too much of my time. I was just trying to work some OOP into my code. Thanks for you…
-
Turn Function into a Class
I'm not sure it just doesn't work. Now If I have this. public function remove_more_jump_link($enable_rmvMoreJump) { function more_jump_link($link) { $offset = strpos($link, '#more-'); if ($offset) { $end = strpos($lin…
-
Display content from another page with custom fields in Wordpress
I think what you are looking for is. This will output the saved info in the custom meta box. Check the WordPess Codex for get_post_meta() for more details.
-
Hey there, having a noobie question about installing Movingboxes script
Well, from the code you posted it looks like you might have some stuff in the wrong place on your site. Everything from to needs to be in the tags. I can't tell for sure without a link to your site, but it looks like to me that you're …
-
The Rules of the Rel Attribute
Using the rel attribute is kinda a win lose situation. You can use it for stuff like the "lightbox", but it won't validate. Not validating isn't the end of the world though. WordPress has a rel attribute hard coded in it that d…
-
First Attempt at Responsive Web Design = Headache
I just took a look at you demo page and respond.js isn't anywhere on the page. If you're using the respond.js that's built into modernizr.js. That can be your problem. There's a bug in modernizer that causes the built in respond.…
-
WordPress 3.3 toolbar covers php errors
If anyone else had any issue with this too. I've come up with a couple of solutions. Here's a plugin that will disable the toolbar. http://wordpress.org/extend/plugins/old-skool-admin-head/ This code will have the errors output in admin …
-
WordPress 3.3 toolbar covers php errors
Yeah, I don't think the WordPress team considered that. I posted something about this issue on the wordpress.org forums and the mod's answer was to use error logs, but then nothing is perfect. Bugs like that are to be expected when there a…
-
IE menu issue
You could try using JavaScript like Superfish. IE has issues with :hover.
-
Problem with Classes
Basically I want the foreach to do is loop this. if (isset($_POST['theName'])) { $myOptions['prefix_theName'] = apply_filters('prefix_theName_save_pre', $_POST['theName']); } for each item in $myArray.…
-
Problem with Classes
Yes it is for a WordPress plugin, but I'm just trying to learn OOP. It's based off a this tutorial. The exapmle I'm working off of is here. The person who wrote the tutrial doesn't explain why he used that method, but it does w…
-
Need Help with my website CSS.
if you put these conditional comments at the beginning of your page just after the doctype you can use the html class to style for IE Just put the class .ie9 before the class or id you want to style for example .my-margins{ margin:10px; …