• I have been searching the web for several days, trying to discover the easiest way to delete the black fold over banner that appears on a post thumbnail in the Minimatica blog.

    There are discussions about this issue on the Internet, but no real solution and/or the threads are dead.

    I’d truly appreciate help. Thanks so much!

    https://www.ads-software.com/extend/themes/minimatica/

Viewing 15 replies - 151 through 165 (of 180 total)
  • to remove the category link on the slider page, just remove

    <p style="color: #fff; margin-left:10px;">
    <?php
    $category = get_the_category();
    echo $category[0]->cat_name;
    ?></p>

    from the very bottom of loop-slider-categories.php

    Sorry, with some of these I don’t know which php file you are refering to, to make the amendments.

    I could send you screen print to show you what elements I want to remove but not here.

    Big birthday yesterday, maybe my head is still a bit fuzzy for this

    from the very bottom of loop-slider-categories.php

    The other is style.css.

    No sorry, I got that one.

    I mean the ones before to remove the entry titles ??

    is it in stylesheet?

    Yes, I beleive it’s the overlay which has the tiltes. Everything should be css unless specied otherwise. Or if you see no <?php ?> tags on it. css won’t have that.

    oooooh

    Did that, not good.

    you won’t see any <> at all in css inless it’s in brackets (<>)

    css is mostly ., ;, :, and { }

    php has a lot more symbols, that’s one way to begin to distinguish.

    in css:

    #slider .post .entry-title a {
        color: #FFFFFF;
        display: none;
    }

    #slider .post .entry-title a {
    color: #FFFFFF;
    display: none;
    }

    I changed this in style.css and the slider went blank. I have left it for you to see.

    I remember trying this last time we worked on it, before we introduced the catagory-slider. The same thing happened.

    I beleive you.., but I can’t check it like that. please put it back and I’ll see what’s up.

    I know,
    this edit was not css, rather, in loop-slider.php

    replace:

    <div class="entry-container">
    
    <h2 class="entry-title"><a href="<?php the_permalink(); ?>" title="<?php the_title_attribute(); ?>" rel="bookmark"><?php the_title(); ?></a></h2>
    
    <div class="entry-summary">
    <?php the_excerpt(); ?>
    
    <div class="clear"></div>
    
    </div><!-- .entry-summary -->
    
    </div><!-- .entry-container -->

    with

    <?/* removed the post title and excerpt:
    
    <div class="entry-container">
    
    <h2 class="entry-title"><a href="<?php the_permalink(); ?>" title="<?php the_title_attribute(); ?>" rel="bookmark"><?php the_title(); ?></a></h2>
    
    <div class="entry-summary">
    <?php the_excerpt(); ?>
    
    <div class="clear"></div>
    
    </div><!-- .entry-summary -->
    
    </div><!-- .entry-container -->
    
    */?>

    the <?/* */?> hides the code.

    I have changed the css back but this comp takes ages to respond (I am installing a service pack on my other computer which could take a while) I will try the above as soon as I can ??

    okay, when you try it, the above should remove the entry titles.

Viewing 15 replies - 151 through 165 (of 180 total)
  • The topic ‘Remove folded banner in Minimatica’ is closed to new replies.