Override menu Item Save Limit at GoDaddy

Just encountered the same problem for the first time. I have a shared hosting account that runs on Linux. Here’s the solution that worked for me: 1. Go to Control Panel > Hosting > File Manager 2. Edit php.ini 3. Add max_input_vars = 3000 right after the following line: url_rewriter.tags = “a=href,area=href,frame=src,input=src,form=,fieldset=” 4. Save the […]

Meta Slider

Easy-to-use slider that allows you to edit images outside of DMS

Slider Revolution

http://codecanyon.net/item/slider-revolution-responsive-wordpress-plugin/2751380 Really Robust and VERY cool Slider http://themes.themepunch.com/?theme=revolution_wp

Conditional CSS Resource

http://www.conditional-css.com/usage   Introduction Undoubtedly every web-designer and developer who as made any attempt to use CSS will have found a situation where different web-browsers require different style statements. This irritation is due to the varying degree of completeness of the CSS implementation across browsers and browser versions. Conditional-CSS is a solution to this problem, taking […]

Screen Size Detection

@media screen and (max-width: 480px) { #features { display: none; } } @media screen and (min-width: 480px)          { .mobileonly { display: none; } }   /*hide items if under 1023*/ @media screen and (max-width: 1023px) {.responsive #page #feature_slider .fcontainer .fcontent, .icons, #sb_footcols {display: none; } }   /*mobile nav- i think this hides one menu to make […]