Robin
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Minify breaks my blog's layout and I have no clue how to fix it11:45 Dinner 🙂 enjoy
Forum: Fixing WordPress
In reply to: Minify breaks my blog's layout and I have no clue how to fix itThe best practice could be dumping site on localhost/dev server removing some of the plugins which might not be necessary doing anything on site (sometime we go overboard with plugins for even small small things) overriding timthumb and adding custom functions for image size.
OR changing from w3 Total cache to WP super cache (just a try)Forum: Fixing WordPress
In reply to: Minify breaks my blog's layout and I have no clue how to fix itImage like popular tags/ facebook activity/ subscribe can be converted into text (css3/google fonts give good options) – its just a start to reduce the load on your home page as i see that internal pages are ok
Forum: Fixing WordPress
In reply to: Minify breaks my blog's layout and I have no clue how to fix itAlex no need to switch just a bit of code update will/should work out
Forum: Fixing WordPress
In reply to: Minify breaks my blog's layout and I have no clue how to fix ittimthumb is basically used to resize image so you can alternatively define custom image sizes in your function file
add_image_size( 'post-thumb', 120, 120, true ); //Forum: Fixing WordPress
In reply to: Minify breaks my blog's layout and I have no clue how to fix itAlex your site opens within a decent time amount for me except for the images loading too slow, testing further i saw that you use timthumb which is the culprit (takes around 30 to 40sec)
http://tools.pingdom.com/fpt/#!/oHO0LJ5un/http://www.successstories.co.in/Forum: Everything else WordPress
In reply to: combining a b2b and b2c site projectDepends on how you want to go about it
you can either create subdomains and install individual wp (say support.your-site.com, store.your-site.com
for support ticketing system you could use something like (http://zendesk.com – which has a well integration plugin for WordPress)Or the other way is to create a e-commerce theme and add pages (support/my account)
You could use something like (Woo-Commerce) (or WP-Commerce) for the e-com functionality.Forum: Fixing WordPress
In reply to: I have no idea why my website is down?????Looks like your theme folder (abf) is not active or got deleted.
Forum: Fixing WordPress
In reply to: Expand Photosize with size of screenHey keitch, not sure about the plugin but the base to start for this is to make your theme responsive (media queries)
Forum: Fixing WordPress
In reply to: Widget in main body (static page)cheers
Generally it is good if we can get some access (may be putting the site on dev sever) it makes the support much easier.Forum: Fixing WordPress
In reply to: Widget in main body (static page)Generally we create a child theme(the ideal option)
But you can put that in your theme-folder/style.css
you might have to play around with something like
color:#FFF !important;The important tag as it will help you overright any default styling
Forum: Fixing WordPress
In reply to: Widget in main body (static page)So this would be your class which you can use to style the div
something like (this is just an example you would have to css it the way you want).advanced_recent_posts_widget { border:1px solid #000; padding:5px; }Forum: Fixing WordPress
In reply to: Widget in main body (static page)There is an extension for your browser called firbug
(https://getfirebug.com/firebuglite)Forum: Fixing WordPress
In reply to: Widget in main body (static page)you can firebug it and see which class it has
Forum: Fixing WordPress
In reply to: Widget in main body (static page)What i can understand from this is you just need to put a div with css styling around your recent post section