• Im just wondering how to add the title inside the thumbnail Photo in the Index/frontpage?

    I don’t know if you get me but I’am trying to have this kind of effect: https://www.allkpop.com

    just look at the title its inside the photos.

Viewing 6 replies - 1 through 6 (of 6 total)
  • Start off and download a theme like “Unstandard” and open up its style.css where you can see how topic titles are automatically generated on top of the post images in front page.

    Thread Starter ri-kun

    (@ri-kun)

    thanks..Im gonna try it..

    Thread Starter ri-kun

    (@ri-kun)

    urg..it didnt worked…any help?

    What exactly didn’t work? Were you trying to incorporate unstandard’s code and styles into existing theme? Or, did you upload the unstandard theme and the thumbnails and titles did not show up>

    Thread Starter ri-kun

    (@ri-kun)

    I just followed some of the codes (the title part) from the unstandard theme coz Im already in love with my current theme and all I want is just to have a opacity effect on the titles..

    what I did was something like this:

    From:

    <div class="onethirdcolumn">
    					<?php the_excerpt(__('Readmore ?'));?>
    
                        <h5><a href="<?php the_permalink() ?>" rel="bookmark" title="Permanent Link to <?php the_title(); ?>"><?php the_title(); ?></a></h5>
    
    					<p class="commenbar"><?php comments_popup_link('No Comments »', '1 Comment »', '% Comments »'); ?> - <a href="<?php the_permalink() ?>">Read More »</a></p>
    
    				</div>

    to: (adding div class=title-hover)

    <div class="onethirdcolumn">
    					<?php the_excerpt(__('Readmore ?'));?>
    
    <div clas="title-hover (or something like that)">
                        <h5><a href="<?php the_permalink() ?>" rel="bookmark" title="Permanent Link to <?php the_title(); ?>"><?php the_title(); ?></a></h5>
    
    					<p class="commenbar"><?php comments_popup_link('No Comments »', '1 Comment »', '% Comments »'); ?> - <a href="<?php the_permalink() ?>">Read More »</a></p>
    </div>
    				</div>

    and ofcourse I have added the css of “title-hover” in the style.css but it did not work. I think I missed something but can’t figure it out.

    Thread Starter ri-kun

    (@ri-kun)

    somehow I managed to change all things properly..oh I love myself…

Viewing 6 replies - 1 through 6 (of 6 total)
  • The topic ‘How to add Entry Topic Inside the Thumbnail Photo?’ is closed to new replies.