Plz can you get all the css dat unlimitedapps.net is using? Or can you drop your heade-default.php code b/c i think my fault come from de css and since you dont av chance and i need to proceed, xo can you drop any of de two? Css and header-default.php and here is de two css @ my own theme header-default.php
http://net.tooxclusive.com/wp-content/themes/carrington-mobile/style.css and http://net.tooxclusive.com/wp-content/themes/carrington-mobile/css/advanced.css
Copy code
Av you got de related poast code? Or plugin
I thought u have it @ ur site.
Plz how do i increase de size of my poast thumbnails
If you want all of your post thumbnail images to be the same size throughout your theme, then you can set it infunctions.php:
set_post_thumbnail_size( 100, 100 ); // 100 pixels wide by 100 pixels tall, box resize mode
OR:
set_post_thumbnail_size( 100, 100, true ); // 100 pixels wide by 100 pixels tall, hard crop mode
However, if you want to have different image sizes for archives, custom category pages, posts, and custom post types, you can set them directly within the template tag, like so:
<?php the_post_thumbnail('thumbnail'); ?>
Copy code .post-thumbnail {
max-height: 350px;
width: 100%;
overflow: hidden;
}
.post-thumbnail img {
margin-top: 175px;
margin-left: 50%;
left: 50%;
top: 50%;
-webkit-transform: translateY(-50%) translateX(-50%);
Copy code
Its gööd, whats else do u need?
(Edited by 2017-04-21 07:08 Keyarn
)