I really like the Arras theme for WordPress. It looks very professionally done and it is very clean. I especially like the “Featured” slideshow presented on the front page. It makes it [the frontpage] look like the site was done for a big company, which paid a lot of money to some design company to make their website.
I did, however, decide to modify the theme a bit and hide the text that it showed on the post overlay. I wanted the slideshow to only show the title of the post and to hide any text from the actual post. Fortunately, the change was extremely easy to make and it take just a few minutes.
The files that need to change are <theme_dir>/home.php and <theme_dir>/css/styles/default.css, where <theme_dir> is the directory of the installed Arras theme. In <theme_dir>/home.php, I commented out the line which adds the post’s text (well, only the first line of it) to the overlay:
<a class="featured-article" href="<?php the_permalink(); ?>" rel="bookmark" style="background: url(<?php echo arras_get_thumbnail($w, $h); ?>) no-repeat;">
<span class="featured-entry">
<span class="entry-title"><?php the_title(); ?></span>
<!-- <span class="entry-summary"><?php echo arras_strip_content(get_the_excerpt(), 20); ?></span> -->
<span class="progress"></span>
</span>
</a>
I decided to comment it out instead of just removing it because it accomplishes the same effect and I can always revert the change, if I decide. I did the same thing in the StyleSheet – made a copy of the original style definition and commented it out, so I don’t loose it. Below are the two changes that need to be made to the StyleSheet in <theme_dir>/css/styles/default.css:
/* featured slideshow */
.featured { background: url(../../images/techblue/content-bg.jpg) repeat-x #FFF; border: 1px solid #CCC; padding: 10px; margin: 0 10px 10px 0; height: 250px; }
/* #controls { position: absolute; float: left; z-index: 100; width: 630px; padding-top: 75px; } */
#controls { position: absolute; float: left; z-index: 100; width: 630px; padding-top: 95px; }
#controls .next, #controls .prev { text-indent: -9000px; width: 30px; height: 30px; display: block; z-index: 1000; }
and
.featured-article { display: block; width: 630px; height: 250px; text-decoration: none !important; }
/* .featured-entry { position: relative; top: 165px; overflow: hidden; background: url(../../images/overlay.png); height: 85px; color: #a7a7a7; padding: 0; display: block; } */
.featured-entry { position: relative; top: 205px; overflow: hidden; background: url(../../images/overlay.png); height: 45px; color: #a7a7a7; padding: 0; display: block; }
.featured-entry .entry-title { color: #FFF; padding: 10px 15px 5px; display: block; font-size: 16px; font-weight: bold; }
The first change in the StyleSheet moves the control arrows 20 pixels down. I did this so they can appear vertically centered, now that the height of the title overlay has been reduced by 40 pixel (done in the second change). The second change not only reduces the height of the overlay but also moves it down to it sill appears at the bottom of the “Featured” slideshow.
That’s all that’s needed. Enjoy!
![Show only title on the “Featured” slideshow
Updated: March 15, 2011 01:49
There have been several newer versions of Arras since the original post was published and things have changed a bit. Therefore, I’d like to post an [...]](http://www.voidtrance.net/wp-content/uploads/2010/01/arras-screen-620x250.jpg)

Thank you! I followed your instructions and you made it very easy.
there’s something wrong in this single post page… the sidebar is rendered under the Leav e a Reply form……….
still wont the link for your modified arras theme please……….
Thank you.
The problem was related to the post using shortcodes for a plugin that I no longer had installed.
Do you have an updated edit for the new version of Arras? I’ve looked where you pointed and can’t find the code lines anywhere. I’m reasonably new to this so it’s potentially a “user error” but I’d appreciate any guidance you can give!
Thanks!
Thomas,
Thank you for the reminder that this needed to be updated. I have posted a new change that should help you.
Thanks! Appreciate the speedy reply. Great site btw.
sweet update, made my site cleaner!
That was a great, easy fix thanks! Is there a similar fix for the thumbnail images in the “featured posts #1″ section (below the main slideshow)? Right now I’m only getting the date there, and wouldn’t mind totally removing the box/text.
Oh, ok, found it…. in case anyone else has the same question, I added
.posts-default .entry-meta { display: none; } to the user.css
Do you know by any chance how to get the same result on the Node-Based posts on the home page?
Yes, one thing that you can do is add the following to your user.css:
.entry-thumbnails-link .entry-meta {display: none;}How to remove this “Your email address will not be published.” in the comment box?
Add the following to your user.css file:
.comment-notes { display: none; }thank you and more power to you!
I’ve been looking for a clean featured slideshow and with your little tutorial this is looking to be the best option!