matatias
Forum Replies Created
-
Forum: Themes and Templates
In reply to: [Expound] Remove grey spotted header backgroundSearch by “absurdidad.png”, which is the name of the image, in the CSS file. Then change the properties — probably the background is already white.
Forum: Themes and Templates
In reply to: [Expound] Header is cut off on mobile using Expound themeMy solution was creating more images so they fit different screen sizes and adding the CSS for each one of them below the @media line in the CSS file. I edited the CSS file because I didn’t know how to use Child Themes, but it should work using Child Themes.
Forum: Themes and Templates
In reply to: [Expound] Removing the "Blog at WordPress" footerTry creating a Child Theme and adding this:
.site-footer { visibility:hidden; }This will hide the footer. Another way to do this is editing the “footer.php” file in a Child Theme.
Forum: Themes and Templates
In reply to: [Expound] expound_get_featured_posts questionTake a look here. I haven’t used a Child Theme, but is better to use them:
http://wordpress.org/support/topic/exclude-certain-categories-from-featured-posts?replies=3%29Forum: Themes and Templates
In reply to: [Expound] Header is cut off on mobile using Expound themeThere’s the solution you want: http://wordpress.org/support/topic/header-image-messed-up-on-mobile-and-tablet?replies=6
Forum: Themes and Templates
In reply to: [Expound] Image Header Not Responsive On Mobile Devices.My solution: http://wordpress.org/support/topic/header-image-messed-up-on-mobile-and-tablet?replies=6
I know there’s a way to make the image also responsive (setting the image width to 100% via CSS, don’t know the exact code) but there you’ll face the problem of the width/height ratio.
Forum: Themes and Templates
In reply to: [Expound] Limiting number of featured postsThank you very much, Konstantin! I added the line here:
if ( empty( $sticky ) ) { return new WP_Query( array( 'posts_per_page' => $count, 'ignore_sticky_posts' => true, 'category__not_in' => (8), ) ); }And it worked as I wanted. Thank you again!
Forum: Themes and Templates
In reply to: [Expound] How to make site title fit in screen for mobile viewTake a look here
http://wordpress.org/support/topic/header-image-messed-up-on-mobile-and-tablet?replies=5
But instead of modifying the style of a background image, you may want to modify the text styles so the title fit in a smaller screen.Forum: Themes and Templates
In reply to: [Expound] Old post is stuck on the first pageTake a look at the WordPress.com forums. Here is WordPress.ORG, so our solutions may not work for you.
http://en.forums.wordpress.com/tags/expoundForum: Themes and Templates
In reply to: [Expound] Header Image Messed Up on Mobile and TabletActually, it’s the theme that identifies the width of the screen and select what CSS to use. The theme already does that, so you’ll add more instructions on what to do when the screen is smaller.
Forum: Themes and Templates
In reply to: [Expound] Header Image Messed Up on Mobile and TabletI think you’ll need to create more images to fit the different sizes of the header. Look for this line in the CSS file
@media
Below that you’ll find alternate styles so the theme can fit in smaller screens. Then you can add the backgrounds with properly sized images to different screen sizes. I’m editing the CSS because I learned about Child Themes too late, but I think it’s possible to do that in a Child Theme.
Maybe there’s another way to do that using a single image, but I don’t know how to do that using CSS.Forum: Themes and Templates
In reply to: [Expound] Limiting number of featured postsI added one line to the functions.php file (it was too late to use a child theme, I’ll set up one later):
function expound_get_featured_posts() { //the line I added to filter a category return new WP_Query(array('category__not_in' => (8) ) ); global $wp_query; // Default number of featured posts $count = apply_filters( 'expound_featured_posts_count', 5 );When I delete that line, the theme returns to normal (1+4 featured posts, but including the category “8”).
Forum: Themes and Templates
In reply to: [Expound] Exclude certain categories from Featured PostsKind of solved it, by replacing post___in:
return new WP_Query( array( 'category__not_in' => (8) ) );Now I need to figure out why it’s showing 10 featured posts instead of 5.
I’ll leave it here so you can warn me if I made any mistake.
Forum: Themes and Templates
In reply to: [Expound] Exclude certain categories from Featured PostsI also tried to follow this advice: http://wordpress.org/support/topic/getting-more-control-over-featured-posts?replies=21 but I couldn’t figure how the array works, and also tried post__not_in instead of post__in.