There's no reason for the more help link to be squashed up on the opposite side of the page, where most people will overlook it.

This patch does the following:

* Changes the wording from "more help" to "Read more"
* Removes the square brackets and ellipses
* Removes the font-size and text-align from system.css

The phrase "more help" is rather vague, in that it doesn't suggest that the destination will provide more help on the current topic, it sounds like it could take the user to an index of help topics. It also lacks an 'action' word, which most links should have (e.g. Add new comment, Read more, Create new account, etc...).

This change has no significant impact on any of the core themes and it shouldn't cause any trouble with other themes.

Support from Acquia helps fund testing for Drupal Acquia logo

Comments

floretan’s picture

Status: Needs review » Needs work

I agree with the string change from "more help" to "Read more", or even "Read more on this topic", as well as the removal of the ellipses.

Removing the brackets and the right-alignment of the link makes it very easy to confuse with regular text though, so while I think this patch is headed in the right direction I also think that we need some more work on this to get the intended effect.

Rowanw’s picture

Status: Needs work » Needs review
FileSize
1.33 KB

Thanks for the feedback flobruit, I changed the text to "Read more on this topic", but when I right-aligned the link it looked out of place. I'm not sure what you mean by 'regular text'.

Another idea I just had: why not turn the help link into a tab? Is there any reason not to?

floretan’s picture

By "regular text" I meant the paragraph just above the help link.

Turning the help link into a tab would not be a good idea, what if two different tabs each have a help link? We want the help link to be visually linked to the help paragraph above it.

Adding an icon to this link as has been suggested in #230014: Identify more clearly internal help links (was: Awesomification of help) might make the help link more obvious, while keeping it visually linked but distinct from the help text. #193311: Ajax Popups in Drupal 7: Adding Modal Dialogs to Help, Confirmations and Filter tips (Unified) deals with these help links as well, and we should take that into account when choosing an icon.

Rowanw’s picture

An icon is a great idea.

floretan’s picture

Status: Needs review » Needs work
Rowanw’s picture

Title: Improve 'usability' of the [more help...] link » Improve visibility of the [more help...] link
Status: Needs work » Needs review
FileSize
1.53 KB
37.86 KB
862 bytes

I've made some significant changes/improvements this time, they include:

* Reworded the link (again) from "Read more on this topic" to "Get more help about this topic" - as I wanted to get the word help in the link.
* Added a circular blue help icon with a question mark inside - I searched the issue queue for existing help icons but I couldn't find any decent generic ones, so I made this one with Inkscape.
* Aligned the text to the right since the icon carries a lot of visual weight.

See attached for sreenshot and patch.

moshe weitzman’s picture

Now that we have the icon, I think we could go bck to a shorter text like 'read more'. my .02

keith.smith’s picture

I agree with Moshe. The icon is nice. "Get" is awkward here though. "More help" or "Read more" seem simple and to the point though.

Rowanw’s picture

FileSize
1.53 KB

Just realised I made a typo in the last patch. You can get the icon from my previous comment.

@Moshe, what's wrong with the longer version?

For a short version, what about these? (the word 'help' should always be present, IMO)

* Get more help
* More help
* Help

Rowanw’s picture

FileSize
1.51 KB

OK, I decided to go back to More help, it does seem right (talk about going full circle). Opinions?

Rowanw’s picture

FileSize
879 bytes

I've also cleaned up the icon a little (there was a faint white spot on the top left corner).

moshe weitzman’s picture

Title: Improve visibility of the [more help...] link » Improve visibility of the [more help...] link by adding an icon
Status: Needs review » Reviewed & tested by the community
Dries’s picture

I've tried this patch and while I like it, the help icon doesn't really fit the default Drupal theme (and its default colors). Can we try to make an icon that fits a little nicer?

catch’s picture

Status: Reviewed & tested by the community » Needs work

Marking to needs work for the icon. Otherwise this looks great though.

yoroy’s picture

FileSize
193.42 KB
367 bytes

keith.smith pointed me to this issue, re: the icon. For core, the current proposal seems a bit over-designed (the glow and double outline). I'd suggest using the standard 'Drupal blue' (#0077c0) as the background and just a single, white border.

yoroy’s picture

Status: Needs work » Needs review
Rowanw’s picture

Status: Needs review » Reviewed & tested by the community
FileSize
71.71 KB

Looks good, I've attached a screenshot of the blocks page with yoroy's icon.

Edit: here's a better screenshot.

Dries’s picture

Status: Reviewed & tested by the community » Fixed

I like the new icon a lot better so I've committed this to CVS HEAD. Thanks all. :)

hass’s picture

Status: Fixed » Needs work

This patch seems missing the RTL stuff and the LTR comment.

.more-help-link a {
  padding: 1px 0 1px 20px; /* LTR */
}
Rowanw’s picture

How does the RTL stuff work exactly?

If it needs to be an exact mirror for RTL then the background position needs to be changed as well, how would this be handled?

hass’s picture

The comitted LTR code in system.css must looks like (currently only the /* LTR */ comment is missing):

.more-help-link a {
  font-size: 0.85em;
  padding: 1px 0 1px 20px; /* LTR */
  background-image: url(../../misc/help.png);
  background-repeat: no-repeat;
}

...and the CSS in system-rtl.css must looks like:

.more-help-link a {
  padding: 1px 20px 1px 0;
}

what will overwrite the padding-left to 0px and padding-right to 20px in RTL. This is not a patch, but how the patch must looks like... untested. I'm not sure if you need to turn the graphic in Hebrew... maybe one of the RTL people can say more.

dman’s picture

+1 "More Help"
-1 tab
+1 keep it right
+ x more visibility of module-specific help :-)

I'm happy with this concept. No opinion (yet) of the implementation details. Not running D7 yet. Yay

hass’s picture

Title: Improve visibility of the [more help...] link by adding an icon » RTL: Improve visibility of the [more help...] link by adding an icon
Rowanw’s picture

Status: Needs work » Needs review
FileSize
1.33 KB

Tested against Arabic, please review.

Rowanw’s picture

Status: Needs review » Reviewed & tested by the community

Since this is a rather minor update and it's been waiting for about 3 weeks, I'm just going to RTBC it.

It still applies cleanly on head.

Dries’s picture

Status: Reviewed & tested by the community » Fixed

Committed to CVS HEAD. Thanks Rowan.

Anonymous’s picture

Status: Fixed » Closed (fixed)

Automatically closed -- issue fixed for two weeks with no activity.