Border Color 12 Years, 12 Months ago
|
Karma: 0
|
Hi, I've put your menu system on my site www.dorothyscloset.com/events/www.dorothyscloset.com/events/ and i am having one small issue with the formatting. I want the background color to be white, and without that greyish border. Can you tell me how to remove it?
|
|
|
|
|
Re:Border Color 12 Years, 12 Months ago
|
Karma: 760
|
Hello,
Add the next CSS rule:
Code: |
.ux-menu A.ux-menu-link-level-0
{
border-style: none !important;
}
|
Regards,
ARI Soft
|
|
|
|
|
Re:Border Color 12 Years, 12 Months ago
|
Karma: 0
|
that worked, thanks. How can i take the border off the sub menu items? Also the navigation seems to take on some formatting from the css style sheet of the template. So intially as the site loads you see the navigation just right, then the formatting kicks in and it's a little blurry... is there a way to force the navigation to keep it's own formatting and override the template's www.dorothyscloset.com/events/ ?
thanks!
|
|
|
|
|
Re:Border Color 12 Years, 12 Months ago
|
Karma: 760
|
Hello,
Described problem occurs because site template applies Cufon script for menu items. Open <joomla_directory>/templates/theme498/scripts/cufon-replace.js file and replace the next code:
Code: |
Cufon.replace('.custom-row .title-custom, .row-top-menu, .wrapper-box .boxTitle h3, .article-title-text, .wrapper-box-extra .boxTitle h3, .componentheading, .article-text-indent h1, .article-text-indent h2, .article-text-indent h3, .article-text-indent h4, .article-text-indent h5, .article-text-indent h6, .blog_more strong', { fontFamily: 'FreeSetC' , hover: true });
|
with the following code:
Code: |
Cufon.replace('.custom-row .title-custom, .wrapper-box .boxTitle h3, .article-title-text, .wrapper-box-extra .boxTitle h3, .componentheading, .article-text-indent h1, .article-text-indent h2, .article-text-indent h3, .article-text-indent h4, .article-text-indent h5, .article-text-indent h6, .blog_more strong', { fontFamily: 'FreeSetC' , hover: true });
|
Regards,
ARI Soft
|
|
|
|
|
|