Uh oh - you just took a bucketful of honeymoon photos and towards the end of the trip your friend borrows the camera and accidentally formats the memory card. Ahhhhh!!! Don't freak out yet. Check out Disk Doctor and get $5 off as a CWD visitor. It just may save the day.
Due to the popularity of our web development contract template, we're offering the contract, estimate, NDA and invoice templates for $199.50 $49.50 if you order by March 15. Click here to learn more.
Getting Drupal's links to line up like you want them is not always easy. By default, the "read more" link on the front page is placed last in the item of links, while "add new comment" is placed first. If you examine the page's CSS, you'll notice that comment_add is prepended by "first," while "node_read_more" is prepended by "last." I think it's a lot more intuitive to place "read more" first, since I am likely to read the rest of the article before placing a comment. To change around the link placement, insert the following code snippet in your theme's stylesheet:
li.last.node_read_more { text-align: left }
li.first.comment_comments, li.first.comment_add { float: right }
If you have more links in your links section than simple "read more" and "add new comment," (for example, "forward" or "print"), then you can apply these style changes to these declarations as well. For example, to move the blog links after "read more" as well, you would use:
li.blog_usernames_blog
What if you would rather have the "read more" link immediately following the teaser, and not in the links section at all? This is a common approach used by many sites, and it is a very intuitive approach since as your eyes leave the last sentence of the teaser they immediately fall upon the "read more" link. Drupal has a contributed module, Read More Tweak, that is for this purpose. Note, however, that during testing we've found that the nodeteaser and excerpt modules conflict with the use of this module. So if you are using either of these modules your inline "read more" links may not appear at all.
All Content © 2005 - 2010 Contract Web Development, Inc. All Rights Reserved. Privacy Policy | Terms of Use | Powered by Drupal
Read More Tweak...
Hi,
I used for a long time this helpful module "Read More Tweak"... but I did not know that it was incompatible with the excerpt-module... However, later I tried out the excerpt module, as I was looking for a similar feauture... As I noticed the incompatibility with the read-more-tweak, I uninstalled the excerpt-module again...
Unfortunately, since then the readmore-links disappear on *some* nodes (NOT on all but most nodes, while it does not matter, if the node was created in use with the excerpt-module or not). So I cannot get it back working... correctly
Do you have perhaps an idea, how I could get the tweak-module back working? How can i now fix this comflict?
Read more issue
Hi there,
We've experienced the same problem with read more - that the links simply don't appear for some nodes. We had either nodeteaser or excerpt installed so we assumed that was the problem. For now our solution is to use the CSS method above in lieu of the read more tweak module.
Re: Read more issue
Hi again,
Thanks for this quick reply... I'm sure it is the excerpt module (I never used nodeteaser) - but in my case deactivating/uninstalling the module does not help further.
Well, nevertheless I tried to implement the snipplet above (even though it is only a temporary solution for me). It did not work at first (< br /> tag!?!), but finally I got the thought of it for adjusting the other details too (except that the other links are now completely unordered?). Thanks!
If you hear of a better workaround or even a fix... please contact me...
Apropos... sorry, I did not even give a hint (in the first comment) about who I am...
hQuadrat (www.hQuadr.at)
Nice writing style. Looking
Nice writing style. Looking forward to reading more from you. Actually I am also related from Digitalxsteam that is your one stop online source for complete Professional Graphic Design. We provide all types of e-business solutions with satisfaction. For details, please visit on our website.
bg image
how would the css be if I want different bg images to each link in the menu?
sherif
drupal read more link
Nice - I've been trying to get the read more placement to work for some time now. This is just the information i was looking for.
css for read more links
Hi there,
We've experienced the same problem with read more - that the links simply don't appear for some nodes. We had either nodeteaser or excerpt installed so we assumed that was the problem. For now our solution is to use the CSS method above in lieu of the read more tweak module.
Read more issue
how would the css be if I want different bg images to each link in the menu?
CSS menu background images
Hi Lara,
You can generally add background to your menu images using the following CSS (in this example the menus are generated using Drupal's Nice Menus module - you might need to adjust your CSS element accordingly):
#block-nice_menus-1 a { background: #fff url(example.gif) no-repeat top center }
Thanks for this!
Thanks a ton - I've been trying to find a way to get my "comment" links to appear in a way similar to Wordpress for ages. Now I have the flexibility to place my read more links where I want them
Drupal's read more link placement
Thank you help for helping me resolve Drupal's strange "out of the box" link placement! If it's an industry standard to have "read more" links, why would Drupal use such odd link placement to begin with?
Friendly read more links
Good article, now my read more links finally look good! I was about to switch to Wordpress. I realize that Drupal is a lot more powerful than some of the competing CMS systems out there (Wordpress, Joomla), but if its user-friendliness doesn't keep up, people won't notice.
RSS duplicate read more
This works great, however I'm having an issue with the "read more" link in my RSS feeds. Specifically, they are appearing twice. Once in the text body (unclickable) and then again as a link. It's not happening on all my sites, however, and I can't seem to figure out what's causing it? Any idea how to get rid of the text-only "read more" link?
Same problem here
I'm also getting two read more links - one is clickable and one is not, however one some sites only one will show up, while on others both show up. Any ideas?
I used for a long time this
I used for a long time this helpful module "Read More Tweak"... but I did not know that it was incompatible with the excerpt-module... However, later I tried out the excerpt module, as I was looking for a similar feature...
As I noticed the incompatibility with the read-more-tweak, I uninstalled the excerpt-module again. Unfortunately, since then the readmore-links disappear on *some* nodes (NOT on all but most nodes, while it does not matter, if the node was created in use with the excerpt-module or not). So I cannot get it back to working correctly.
Wordpress is more user friendly
Sigh, why can't Drupal just be more user-friendly? I realize they're getting closer and closer with each version, but the placement of read more links is just another example of how far they're falling behind Wordpress in terms of user friendliness.
Great guide
Now that is what I call an excellent guide, thanks...
Nice - I've been trying to
Nice - I've been trying to get the read more placement to work for some time now.
I used for a long time this
I used for a long time this helpful module "Read More Tweak"... but I did not know that it was incompatible with the excerpt-module... However, later I tried out the excerpt module, as I was looking for a similar feature...
Drupal read more
This is exactly what I've done, so I'm fine with this now I think.
Read more links
Sheesh, c'mon Drupal. How difficult is it to see that people want a read more link right after the content? Drupal's default implementation of read more links is ridiculous - thank goodness there's people willing to create an improvement on this feature!