Oh no! Where's the JavaScript?
Your Web browser does not have JavaScript enabled or does not support JavaScript. Please enable JavaScript on your Web browser to properly view this Web site, or upgrade to a Web browser that does support JavaScript.
Not a member yet? Click here to register.
Forgot Password?

Removing extra line in Theme's SubHeader (on Fusion 9)

Asked Modified Viewed 2,851 times
A
aurnay
A
aurnay 10
  • Junior Member, joined since
  • Contributed 20 posts on the community forums.
  • Started 5 threads in the forums
  • Started this discussions
asked
Junior Member

How do I remove the extra line below the Theme's SubHeader?

It looks like its repeating the subheader. I'm guessing its something to do with the command line 12 'showsublinks' in theme.php but can't figure out what's missing. I'm using Fusion 7's GameManiacs Theme on Fusion 9). Everything else seems ok except for this little eyesore :). Can anyone help? Thanx in advance.

i.gyazo.com/8bd3d423012b08364a93e3a665ce7388.png

i.gyazo.com/fd2bcaca67f4618a9c4e0ed7339e618c.png


Website : https://smktm.000webhostapp.com
Edited by aurnay on 14-01-2018 04:39,
0 replies

7 posts

R
Anonymous User
R
Anonymous User 367
  • Veteran Member, joined since
  • Contributed 939 posts on the community forums.
  • Started 2 threads in the forums
  • Answered 20 questions
answered
Veteran Member

.sub-header .navbar {
    margin-bottom: 0;
    border: none;
}
0 replies
A
aurnay
A
aurnay 10
  • Junior Member, joined since
  • Contributed 20 posts on the community forums.
  • Started 5 threads in the forums
  • Started this discussions
answered
Junior Member

Quote

.sub-header .navbar {
margin-bottom: 0;
border: none;
}

Where do I put this code?
0 replies
F
Falk
F
Falk 131
Need help?, Having trouble?
• View our Documentation for Guides, Standards and Functions
• Name and Organize your Topics and Content correctly in the corresponding Forums for best support results
• Attaching Log Files and Screenshots when reporting issues will help
• Provide with an URL to live example if one exists
• Please read the How to Report an Error post
• Please read and comply with the Code of Conduct

(¯·._.·(¯°·._.·°º*[ Project Manager ]*º°·._.·°¯)·._.·¯)
  • Super Admin, joined since
  • Contributed 6,201 posts on the community forums.
  • Started 639 threads in the forums
  • Answered 11 questions
answered
Super Admin

in your theme´s style.css, make sure you replace existing if one is there.
Might need to add !important,
0 replies
R
Anonymous User
R
Anonymous User 367
  • Veteran Member, joined since
  • Contributed 939 posts on the community forums.
  • Started 2 threads in the forums
  • Answered 20 questions
answered
Veteran Member

Just add to end of styles.css

Might need to add !important,

!important is no needed
0 replies
A
aurnay
A
aurnay 10
  • Junior Member, joined since
  • Contributed 20 posts on the community forums.
  • Started 5 threads in the forums
  • Started this discussions
answered
Junior Member

I've added those codes in style.css (lines 143-146), that doesn't work. It looks like the sub-header is repeating the image (subheader-mid.png) in code line 126.
         background-image: url(images/subheader-mid.png);


i.gyazo.com/a94743f0fb74f31400498be999650ce7.png

/* Comment element properties */

 a {
         color: #fff;
         text-decoration: none;
 }

 a:hover {
         color: #c1de00;
         text-decoration: none;
 }

 a.side {
         color: #fff;
         text-decoration: none;
 }

 a:hover.side {
         color: #c1de00;
         text-decoration: none;
 }

 a.white, li.white a {
         color: #fff
         text-decoration: none;
 }

 a:hover.white, li.white a:hover {
         color: #c1de00;
         text-decoration: none;
 }

 body {
         font-family: Verdana, Arial, Helvetica, sans-serif;
         font-size: 11px;
         color: #c1de00;
         background: #111;
         margin: 5px;
 }

 hr {
         height: 1px;
         border: 1px solid #eee;
 }

 hr.side-hr {
         height: 1px;
         border: 1px solid #eee;
 }

 td {
         font-family: Verdana, Arial, Helvetica, sans-serif;
         font-size: 11px;
 }

 pre {
         font-family: Verdana, Arial, Helvetica, sans-serif;
         font-size: 11px;
 }

 .alt {
         color: #000;
 }

 .spacer {
         margin-bottom: 0px;
 }

 .admin-message {
         font-family: Verdana, Arial, Helvetica, sans-serif;
         font-size: 11px;
         text-align: center;
         color: #fff;
         background-color: #transparent;
         border: 1px solid #e1e1e1;
         padding: 3px 4px 5px 4px;
         margin-bottom: 5px;
 }


 /* Form element properties */

 form {
         margin: 0px;
 }

 .button {
         font-family: Verdana, Arial, Helvetica, sans-serif;
         font-size: 10px;
         color: #fff;
         background-color: #111;
         background-image: url(images/button.gif);
         height: 20px;
         border: 1px solid #000;
         margin-top: 2px;
 }

 .bbcode {
         font-family: Verdana, Arial, Helvetica, sans-serif;
         font-size: 10px;
         color: #000;
         background-color: #eee;
         border: 1px solid #ccc;
         margin-top: 2px;
 }

 .textbox {
         font-family: Verdana, Arial, Helvetica, sans-serif;
         font-size: 10px;
         color: #fff;
         background-color: #111;
         background-image: url(images/a4ftboxbg.png);
         background-repeat: repeat-x;
         border: 1px solid #888;
 }


 /* Header and footer properties */

 .sub-header {
         font-family: Verdana, Arial, Helvetica, sans-serif;
         font-weight: bold;
         font-size: 10px;
         color: #fff;
         background-color: #transparent;
         background-image: url(images/subheader-mid.png);
         padding: 0px 5px 0px 5px;
 }

 .sub-header ul{
         margin: 0;
         padding: 0;
 }

 .sub-header ul li{
         display: inline;
 }

 .sub-header ul li .first-link .bullet {
         display: none;
 }

 .sub-header .navbar {
         margin-bottom: 0;
         border: none;
 }

 .full-header {
         font-family: Verdana, Arial, Helvetica, sans-serif;
         font-size: 10px;
         color: #fff;
         background-color: #transparent;
         padding: 0px 0 0px 0;
 }

 .main-footer {
         font-family: Verdana, Arial, Helvetica, sans-serif;
         font-size: 10px;
         color: #c1de00;
         background-color: #111;
         padding: 5px;
 }

 .bottom-footer {
         font-family: Verdana, Arial, Helvetica, sans-serif;
         font-size: 10px;
         color: #c1de00;
         background-color: #111;
         padding: 4px 4px 5px 4px;
 }

 .main-body {
         font-size: 10px;
         color: #c1de00;
         background-color: #000;
         background-image: url(images/gradient.png);
         background-repeat: repeat-x;
         padding: 4px;
 }


 /* Side-Panel properties */

 .side-border-left {
         color: #c1de00;
         background-color: #transparent;
         padding: 10px 10px 10px 0;
         width: 175px;
 }

 .side-border-right {
         color: #c1de00;
         background-color: #transparent;
         padding: 10px 0 10px 10px;
         width: 175px;
 }

 .sideline {

         background-image: url(images/sidelineleft.png);
         background-repeat: repeat-y;
       
 }

 .sideliner {

         background-image: url(images/sidelineright.png);
         background-repeat: repeat-y;
 }

 .scapmain {
         font-family: Verdana, Arial, Helvetica, sans-serif;
         font-size: 10px;
         font-weight: bold;
         color: #c1de00;
         background-color: #111;
         background-image: url(images/side.png);
         background-repeat: repeat-x;
         padding: 6px 4px 6px 4px;
 }

 .sideb {
         background-image: url(images/sideb.png);
         background-repeat: repeat-x;
 }

 .a4fbar {
         background-image: url(images/a4fbar.png);
         background-repeat: no-repeat;
         background-color: #transparent;
 }

 .side-body {
         font-size: 10px;
         color: #c1de00;
         background-color: #000;
         background-image: url(images/gradient.png);
         background-repeat: repeat-x;
         border: 0px solid #000;
         padding: 4px;
 }


 /* Center-Panel properties */

 .news-category {
         border: 0;
         margin: 3px 5px 0 0;
         float: left;
 }

 .news-footer {
         font-size: 10px;
         color: #c1de00;
         background-color: #000;
         padding: 3px 4px 4px 4px;
 }

 .capmain {
         font-family: Verdana, Arial, Helvetica, sans-serif;
         font-size: 10px;
         font-weight: bold;
         color: #fff;
         background-color: #111;
         background-image: url(images/cap.png);
         padding: 6px 4px 6px 4px;
 }

 .main-bg {
         color: #c1de00;
         background-color: #transparent;
         padding: 10px 0 5px 0;
 }


 /* General table properties */

 .center {
         margin: 0 auto;
 }

 .tbl-border {
         border: 2px solid #202020;
 }
 
 .tbl {
         font-size: 11px;
         color: #fff;
         background-color: #111;
         padding: 4px;
 }
 
 .tbl1 {
         font-size: 11px;
         color: #fff;
         background-color: #333;
         padding: 4px;
 }
 
 .tbl2 {
         font-size: 11px;
         color: #fff;
         background-color: #111;
         padding: 4px;
 }
 
 .forum-caption {
         font-size: 11px;
         font-weight: bold;
         color: #fff;
         background-color: #788a00;
         padding: 2px 4px 4px 4px;
 }
 
 .quote {
         font-size: 11px;
         color: #000;
         background-color: #22;
         padding: 4px;
         margin: 0px 20px 0px 20px;
         border: 1px solid #bbb;
 }
 
 .poll {
         height: 12px;
         border: 1px solid #000;
 }

 .comment-name {
         font-weight: bold;
         color: #788a00;  }

 .shoutboxname {
        font-weight: bold;
        color: #04688d;
 }

 .shoutbox {
        color: #788a00;
 }

 .shoutboxdate {
        font-size: 10px;
        color: #222;
 }

 .small {
        font-size: 10px;
        font-weight: normal;
 }

 .small2 {
        font-size: 10px;
        font-weight: normal;
        color: #fff;
 }

 .side-small {
        font-size: 10px;
        font-weight: normal;
        color: #fff;
 }

 .side-label {
        color: #fff;
        margin: 2px 0 2px 0;
        padding: 2px 2px 3px 2px;
 }


/* Vertical Navigation */

 #navigation h2 {
        font-size: 10px;
        font-weight: normal;
        background-color: #f1f1f1;
        margin: 0;
        padding: 4px;
 }
       
 #navigation ul {
        margin: 0;
        padding: 0;
        list-style-type: none;
 }

* html #navigation ul li{
   height: 1%;
 }

 #navigation a {
        display: block;
        color: #555;
        padding: 2px;
        text-decoration: none;
 }

 #navigation a:hover {
        color: #222;
        background-color: #a0bd00;
 }


/* Page Navigation */

 .pagenav {
        padding: 4px;
 }

 .pagenav span {
        color: #000;
        background-color: #a0bd00;
        border: 1px solid #ddd;
        padding: 2px 4px 2px 4px;
        margin: 2px;
 }

 .pagenav a {
        color: #555;
        background-color: #f1f1f1;
        border: 1px solid #ddd;
        padding: 2px 4px 2px 4px;
        margin: 2px;
        text-decoration: none;
 }

 .pagenav a:hover {
        color: #000;
        background-color: #a0bd00;
        margin: 2px;
        text-decoration: none;
 }
Edited by aurnay on 20-01-2018 05:57,
aurnay attached the following file:
subheader-mid.png [No information available / 182 Downloads]
styles_2.rar [No information available / 157 Downloads]
0 replies
R
Anonymous User
R
Anonymous User 367
  • Veteran Member, joined since
  • Contributed 939 posts on the community forums.
  • Started 2 threads in the forums
  • Answered 20 questions
answered
Veteran Member

Clear cache Ctrl+F5
0 replies
A
aurnay
A
aurnay 10
  • Junior Member, joined since
  • Contributed 20 posts on the community forums.
  • Started 5 threads in the forums
  • Started this discussions
answered
Junior Member

Problem solved ...sub-header looks good now. YAY!!! :D :D :D

Quote

Clear cache Ctrl+F5
- by RobiNN

I didn't get to do this ('Clear cache Ctrl+F5' ) but thanx RobiNN for the assistance. When I accessed the site today, the problem with the sub-header has disappeared, and I haven't accessed the site since I posted my last reply. I don't know if my webhost did something at their end or if it took some time for their server to update the database/files when I uploaded the updated .css stylesheet before I could see the change. Hope its the latter, then I know its the codes that needed improvement.

i.gyazo.com/f0bba76fb681d42622731125ac059161.jpg

The sub-header looks great. THANK YOU guys/admins, couldn't have done it without all the help...appreciate it very much :Y
Edited by aurnay on 27-01-2018 03:56,
0 replies

Labels

None yet

Statistics

  • Views 0 views
  • Posts 7 posts
  • Votes 0 votes
  • Topic users 3 members

3 participants

F
F
Falk 131
Need help?, Having trouble?
• View our Documentation for Guides, Standards and Functions
• Name and Organize your Topics and Content correctly in the corresponding Forums for best support results
• Attaching Log Files and Screenshots when reporting issues will help
• Provide with an URL to live example if one exists
• Please read the How to Report an Error post
• Please read and comply with the Code of Conduct

(¯·._.·(¯°·._.·°º*[ Project Manager ]*º°·._.·°¯)·._.·¯)
  • Super Admin, joined since
  • Contributed 6,201 posts on the community forums.
  • Started 639 threads in the forums
  • Answered 11 questions
A
A
aurnay 10
  • Junior Member, joined since
  • Contributed 20 posts on the community forums.
  • Started 5 threads in the forums
  • Started this discussions
R
R
Anonymous User 367
  • Veteran Member, joined since
  • Contributed 939 posts on the community forums.
  • Started 2 threads in the forums
  • Answered 20 questions

Notifications

Track thread

You are not receiving notifications from this thread.

Related Questions

Not yet