Exit
  • Global community
    • Language:
      • Deutsch
      • English
      • Español
      • Français
      • Português
  • 日本語コミュニティ
    Dedicated community for Japanese speakers
  • 한국 커뮤니티
    Dedicated community for Korean speakers
0

CSS and Plug-In Lab Horizontal Image Menu Extension

New Here ,
Jun 05, 2009 Jun 05, 2009

Copy link to clipboard

Copied

I have purchased plugInLab's horizontal image extension, and have run into a problem.  I am using the menu generated in a PHP include, and it seems it applies the anchor style from my external stylesheet momentarily before loading the javascript.  PlugInLab support suggested creating a style for my links, but this would require changing thousands of links to reflect the new class.  I was wondering if anyone else has experienced this problem.  Basically the text for the menu displays in bold, then once it is fully loaded, goes to normal type.  Here is a link :http://www.danshamptons.com/content/danspapers/issue10_2009/01d.html

I tried defining a style for the menu items, but this does not seem to work.  Any input would be greatly appreciated.

Thanks,

Colin

TOPICS
Extensions

Views

1.1K
Translate

Report

Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
LEGEND ,
Jun 06, 2009 Jun 06, 2009

Copy link to clipboard

Copied

LATEST

Try styling your links using something like the following (no classes req'd).

a,  a:link {
  color: #000;
  font-weight: bold;
  text-decoration: none;
}
a:visited {
  color: #000;
  font-weight: bold;
  text-decoration: none;
}
a:hover {
  color: #000;
  text-decoration: underline;
}
a:focus {
  color: #000;
}
a:active {
  color: #000;

Change the font-weight to that you prefer.

PZ

Votes

Translate

Report

Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines