SMF For Free Support Forum
Signup For Free Forum
July 08, 2008, 09:41:26 pm *
Welcome, Guest. Please login or register.
Did you miss your activation email?

Login with username, password and session length
News: Welcome to SMF For Free. The best free SMF Host
 
   Home   Help Search Arcade Gallery Login Register  

Pages: [1]
  Print  
Author Topic: Tabs in Skin Not Showing  (Read 335 times)
0 Members and 1 Guest are viewing this topic.
RyanA
SMF For Free Member
*
Offline Offline

Posts: 41


View Profile
« on: May 07, 2008, 12:51:18 pm »

I am having trouble with some tabs in the Deviant Art Skin by Warzone. I did contact him but he hasn't been around, so I thought I might get you all to help since it might be something simple.

I have uninstalled and reinstalled the skin. I don't have any mods to speak of.

This is the problem.

Logged
simply sibyl
Global Moderator
*
Offline Offline

Posts: 6881



View Profile WWW
« Reply #1 on: May 07, 2008, 12:53:01 pm »

I am having trouble with some tabs in the Deviant Art Skin by Warzone. I did contact him but he hasn't been around, so I thought I might get you all to help since it might be something simple.

I have uninstalled and reinstalled the skin. I don't have any mods to speak of.

This is the problem.



Can I have your forum url please?   
Logged

simply sibyl
Global Moderator
*
Offline Offline

Posts: 6881



View Profile WWW
« Reply #2 on: May 07, 2008, 01:04:03 pm »

heh managed to find it .. handy dandy magnifying glass
http://ofhallowsandhorcruxes.smfforfree4.com/index.php

will see whats up but the tabs do show for me.. 

I can see that the mirrortab_back image is not working however.. Ill take a look at your css and get back with ya
« Last Edit: May 07, 2008, 01:06:29 pm by simply sibyl » Logged

pker own
SMF For Free Sr. Member
*
Offline Offline

Posts: 377


View Profile WWW
« Reply #3 on: May 07, 2008, 01:04:17 pm »

Here is his URL.

http://ofhallowsandhorcruxes.smfforfree4.com/

and i can see your tabs fine but takes a while to load.
Logged

simply sibyl
Global Moderator
*
Offline Offline

Posts: 6881



View Profile WWW
« Reply #4 on: May 07, 2008, 01:10:39 pm »

The mirrortab_back image is indeed missing.   I tried the link from imageshack and it does not exist.
I can redo that tab section for you so that it uses color codes instead of images.  It will look identical to how it does now.     Give me a little time here and Ill post the code for you , tell you what part to replace.
Logged

simply sibyl
Global Moderator
*
Offline Offline

Posts: 6881



View Profile WWW
« Reply #5 on: May 07, 2008, 01:21:38 pm »

RyanA.     Look for the tab section in the css and replace the entire tab section with this:

If you are not sure about how to do that and exactly what part to replace let me know and Ill just give you the entire css with the new tab code in it.

Code:
/* definitions for the main tab, active means the tab reflects which page is displayed */
.maintab_first, .maintab_back, .maintab_last, .maintab_active_first, .maintab_active_back, .maintab_active_last
{
color: #6C7F77;
text-transform: uppercase;
vertical-align: top;
}
.maintab_back, .maintab_active_back
{
color: #6C7F77;
text-decoration: none;
font-size:  9px;
vertical-align: top;
padding: 2px 6px 6px 6px;
font-family: tahoma, sans-serif;
}

.maintab_first
{
background: #8FA096;
             border-left:  1px solid #B9C5B9;
             border-bottom:  1px solid #B9C5B9;
width: 10px;
}
.maintab_back
{
background: #8FA096;
             border-bottom:  1px solid #B9C5B9;
}
.maintab_last
{
background: #8FA096;
             border-right: 1px solid #B9C5B9;
             border-bottom: 1px solid #B9C5B9;
width: 8px;
}
.maintab_active_first
{
background: #8FA096;
             border-left:  1px solid #B9C5B9;
             border-bottom:  1px solid #B9C5B9;
width: 6px;
}
.maintab_active_back
{
background: #8FA096;
              border-bottom:  1px solid #B9C5B9;
             
}
.maintab_active_last
{
background: #8FA096;
             border-right:  1px solid #B9C5B9;
             border-bottom: 1px solid #B9C5B9;
width: 8px;
}

/* how links behave in main tab. */
.maintab_back a:link , .maintab_back a:visited, .maintab_active_back a:link , .maintab_active_back a:visited
{
color: #6C7F77;
text-decoration: none;
}

.maintab_back a:hover, .maintab_active_back a:hover
{
color: #6C7F77;
text-decoration: none;
}
/* definitions for the mirror tab */
.mirrortab_first, .mirrortab_back, .mirrortab_last, .mirrortab_active_first, .mirrortab_active_back, .mirrortab_active_last
{
color: #6C7F77;
text-transform: uppercase;
vertical-align: top;
}
.mirrortab_back, .mirrortab_active_back
{
color: #6C7F77;
text-decoration: none;
font-size: 9px;
vertical-align: bottom;
padding: 6px 6px 2px 6px;
font-family: tahoma, sans-serif;
}

.mirrortab_first
{
background: #8FA096;
             border-top:  1px solid #B9C5B9;
             border-left:  1px solid #B9C5B9;
width: 10px;
}
.mirrortab_back
{
background: #8FA096;
             border-top:  1px solid #B9C5B9;
}
.mirrortab_last
{
background: #8FA096;
             border-top:  1px solid #B9C5B9;
             border-right:  1px solid #B9C5B9;
width: 6px;
}
.mirrortab_active_first
{
background: #8FA096;
             border-top:  1px solid #B9C5B9;
             border-left:  1px solid #B9C5B9;
width: 6px;
}
.mirrortab_active_back
{
background: #8FA096;
             border-top:  1px solid #B9C5B9;
}
.mirrortab_active_last
{
background: #8FA096;
             border-top:  1px solid #B9C5B9;
             border-right: 1px solid #B9C5B9;
width: 8px;
}

/* how links behave in mirror tab. */
.mirrortab_back a:link , .mirrortab_back a:visited, .mirrortab_active_back a:link , .mirrortab_active_back a:visited
{
color: #6C7F77;
text-decoration: none;
}

.mirrortab_back a:hover, .mirrortab_active_back a:hover
{
color: #6C7F77;
text-decoration: none;
}
Logged

RyanA
SMF For Free Member
*
Offline Offline

Posts: 41


View Profile
« Reply #6 on: May 07, 2008, 04:42:03 pm »

You are great. It worked!

Thanks for helping out so quickly.


They should call you Super Sybil instead.  Wink
Logged
LaundryLady
Global Moderator
*
Offline Offline

Posts: 2763


Keep Smiling, Let'em Wonder!


View Profile WWW
« Reply #7 on: May 07, 2008, 04:56:28 pm »

Nah, we don't want to give her ideas( but, dang, she is good ain't she?)
Logged

simply sibyl
Global Moderator
*
Offline Offline

Posts: 6881



View Profile WWW
« Reply #8 on: May 07, 2008, 05:00:20 pm »

its a bird.. its a plane...
« Last Edit: May 07, 2008, 05:09:46 pm by simply sibyl » Logged

Madcap22
SMF For Free Full Member
*
Offline Offline

Posts: 211


I AM SUPER LUIGI!


View Profile WWW
« Reply #9 on: May 07, 2008, 05:08:10 pm »

No its super smiley!  2funny
Logged



Pages: [1]
  Print  
 
Jump to:  

Powered by SMF 1.1.5 | SMF © 2006-2008, Simple Machines LLC
ServerBeach Coupon
Page created in 0.258 seconds with 17 queries.