Probably should put this request under coding, but since it relates to the 2015 MFL Skin Template in this thread, I will ask here
What is the code I have to insert to round the corners of the homepagetabs background and division headers.?
Thanks - Mitch
http://www21.myfanta...15/home/53660#0
division headers you can use:
#standings h3 {
border-radius: 7px;
}
Not sure about the tabs
EDIT TO ADD:
To round the corners of the "black" background of the tab area
#homepagetabs {
border-radius: 10px 10px 0px 0px;
}
To round the corners of the "red" tabs
#homepagetabsdiv #homepagetabs li.currenttab {
border-radius: 10px 10px 0px 0px;
}
Seems to work for 2nd tab but doesn't look right on the "HOME" tab
EDIT TO ADD
I know why the "HOME" tab gets messed up. Apparently that skin overwrites "MAIN" with "HOME" and that causes issues with the background
To Correct you have to include the following:
li#tab0.currenttab:after {
background: none;
}
li#tab0:after {
content: "";
background: none;
}