In some cases it can happen that the design results in the links being the same color as the background or close enough that they cannot be seen.
If you look in the stylemojo.css file you can find this for links in the main content:
a{color:inherit}
you may need to change that to a color that works with your design. Or to affect only the module edit links, you may need to specifiy a color in this:
a.ModuleEditLink,
a.ModuleEditLink:link,
a.ModuleEditLink:visited,
a.ModuleEditLink:hover,
a.ModuleEditLink:active { font-size:10px !important; color:yourcolor; }
or to specifically affect the top nav links like sign in you would modify this:
.sitelink,a.sitelink:link,a.sitelink:visited { color:inherit; ...
After making changes to css files, go to Administration > Advanced Tools > Design Tools > Cache Tool
and click the button to reset the skin guid
Hope that helps,
Joe