-
AuthorPosts
-
adamlopuch Friend
adamlopuch
- Join date:
- April 2011
- Posts:
- 30
- Downloads:
- 0
- Uploads:
- 14
- Thanks:
- 10
- Thanked:
- 5 times in 1 posts
April 28, 2011 at 4:52 am #163314Running Joomla 1.6.3, JA_Events J16 1.0.0beta template, T3 Framework v1.2.3:
I would like to remove the gray divider bars that appear between modules in the right-hand menu (e.g. POSITION-7) and between menu items in a menu places in that position.
I think this might be a BOTTOM-BORDER tag, but I cannot find the appropriate one to turn off in CSS.
Can anyone help point me to the correct settings to eliminate these?
In the attached screenshot, I have highlighted in YELLOW the divider bars I would like to hide.
12773Thanks for your help.
himangi Friendhimangi
- Join date:
- April 2011
- Posts:
- 1406
- Downloads:
- 1
- Uploads:
- 86
- Thanks:
- 21
- Thanked:
- 345 times in 332 posts
April 28, 2011 at 9:46 am #388792Hi,
Open you template.css and find the following code on line 784 approximately. <blockquote> #ja-container ul.menu li {
background: url(“../images/nav-sep.gif”) no-repeat scroll right bottom transparent;
margin-right: -15px;
overflow: visible;
}</blockquote>change url(“../images/nav-sep.gif”) no-repeat scroll right bottom transparent; to none;
See if this removes the borders you dont want, if it does not work, please give your site url here.
1 user says Thank You to himangi for this useful post
adamlopuch Friendadamlopuch
- Join date:
- April 2011
- Posts:
- 30
- Downloads:
- 0
- Uploads:
- 14
- Thanks:
- 10
- Thanked:
- 5 times in 1 posts
April 28, 2011 at 1:27 pm #388833Thank you, Himangi — this resolves my question! 🙂
It was my mistake… I thought for sure it was a border element; I did not think it would have been the background! :-[
Feedback for future users:
1. The divider bars in Menu elements are controlled by “nav-sep.gif”
2. The divider bars between module elements are controlled by “mod-bg.gif”
3. Search the CSS to find these references for your specific installation. Remember, if you are using profiles the profile code may overrule the default template.cssFor my situation (using a custom profile for JA_Event based on a modified version of the default red profile), I found and changed these references in my profile color.css file:
A. To remove menu divider bars:
Original code in color.css:
#ja-container ul.menu li { background: url(../images/nav-sep.gif) no-repeat right bottom; }
New code in color.css:
#ja-container ul.menu li { background: none; }
B: To remove module divider bars:
Original code in color.css:
.ja-col div.moduletable {
background: url(../images/mod-bg.gif) no-repeat right bottom;
color: #383838;
}
New code in color.css:
.ja-col div.moduletable {
background: none;
color: #383838;
}
AuthorPostsViewing 3 posts - 1 through 3 (of 3 total)This topic contains 3 replies, has 2 voices, and was last updated by adamlopuch 13 years, 6 months ago.
We moved to new unified forum. Please post all new support queries in our New Forum
How to remove divider bars between menu/modules in right bar?
Viewing 3 posts - 1 through 3 (of 3 total)