inherit
160091
0
May 9, 2012 16:56:46 GMT -8
`FOREVER & MORE
<333333* Ever :)
50
November 2010
moonspirit
|
Post by `FOREVER & MORE on Nov 6, 2011 7:48:03 GMT -8
Im making a skin for my site and I was wondering if there was a code that you could use to round your categories?
|
|
Clark-R
Junior Member
Previous Exart Owner
Posts: 294
inherit
170528
0
May 7, 2015 13:36:12 GMT -8
Clark-R
Previous Exart Owner
294
August 2011
exeffect
|
Post by Clark-R on Nov 7, 2011 9:48:51 GMT -8
While filling a client's request one day; I came across this code:
<style type="text/css"> <!-- .catbg { height: 50px; background-image: url ('URL OF RESIZED HOSTED PATTERN HERE') text-align: center; text-transform: uppercase; font-family: georgia; font-size: 10pt; color: #E5E5E5; border-top-left-radius: 10px; border-top-right-radius: 10px; } --!> </style>
It should work..
There are other section you can edit as well, not just the ones highlighted.
|
|
inherit
160091
0
May 9, 2012 16:56:46 GMT -8
`FOREVER & MORE
<333333* Ever :)
50
November 2010
moonspirit
|
Post by `FOREVER & MORE on Nov 7, 2011 16:35:49 GMT -8
Which header/footer do you put it in?
|
|
Clark-R
Junior Member
Previous Exart Owner
Posts: 294
inherit
170528
0
May 7, 2015 13:36:12 GMT -8
Clark-R
Previous Exart Owner
294
August 2011
exeffect
|
Post by Clark-R on Nov 8, 2011 3:57:56 GMT -8
They never said, but I'm sure it's global headers..
|
|
inherit
36421
0
Jul 28, 2024 10:58:26 GMT -8
Kim
2,079
January 2005
kimmeh
|
Post by Kim on Nov 8, 2011 9:42:07 GMT -8
I'd imagine it be Main Header, but you can try Global first and it doesn't work then take it out and put it in the Main Header.
|
|
inherit
160091
0
May 9, 2012 16:56:46 GMT -8
`FOREVER & MORE
<333333* Ever :)
50
November 2010
moonspirit
|
Post by `FOREVER & MORE on Nov 8, 2011 18:27:54 GMT -8
Do not use that code, I put it in my main header and it wiped my site, I had to hit back several times just to fix it.
|
|
Clark-R
Junior Member
Previous Exart Owner
Posts: 294
inherit
170528
0
May 7, 2015 13:36:12 GMT -8
Clark-R
Previous Exart Owner
294
August 2011
exeffect
|
Post by Clark-R on Nov 8, 2011 20:44:20 GMT -8
Oh wow, sorry about that.. Someone I knew used the code and said it worked.. I don't know.. *Shrugs* :/
But you're probably better off just requesting head/base images with transparent round corners.
|
|
kaayla
inherit
-4661007
0
Nov 24, 2024 8:48:08 GMT -8
kaayla
0
January 1970
GUEST
|
Post by kaayla on Nov 8, 2011 22:45:00 GMT -8
Is this what you mean? If so, it is the code ExEffect provided. BUT it goes in the MAIN HEADER at the top of the codes. <style type="text/css"> <!-- .catbg { height: 50px; background-image: url ('GRADIENT IMG HERE') text-align: center; text-transform: uppercase; font-family: georgia; font-size: 10pt; color: #E5E5E5; border-top-left-radius: 10px; border-top-right-radius: 10px; } --> </style>
|
|
Clark-R
Junior Member
Previous Exart Owner
Posts: 294
inherit
170528
0
May 7, 2015 13:36:12 GMT -8
Clark-R
Previous Exart Owner
294
August 2011
exeffect
|
Post by Clark-R on Nov 9, 2011 20:30:42 GMT -8
Thanks Kaayla, I should have known. XD
|
|
kaayla
inherit
-4662036
0
Nov 24, 2024 8:48:08 GMT -8
kaayla
0
January 1970
GUEST
|
Post by kaayla on Nov 9, 2011 20:34:38 GMT -8
No problem (: But keep in mind, it is NOT supported by Internet Explorer.
|
|
inherit
I need a new CT, thinking.... [insert Jeopardy theme song here]
110769
0
Aug 21, 2021 0:07:21 GMT -8
Tumbleweed
20,825
September 2007
tumbleweed
|
Post by Tumbleweed on Nov 10, 2011 2:17:38 GMT -8
Do not use that code, I put it in my main header and it wiped my site, I had to hit back several times just to fix it. It may have made you site wonky but none of your coding was lost. In other words your site wasn't wiped out. If I could tell you how many times I've messed my site and had to use noheaders to fix my boo boos, you wouldn't believe me. Besides, I just put it on my site and it didn't do a thing to it. However, there were some errors in what ExEffect posted. Just so you all know what to look for if something messes up your site. The red ! needs to be gone, the blue ; added and there should be no space between the url and (. <style type="text/css"> <!-- .catbg { height: 50px; background-image: url('URL OF RESIZED HOSTED PATTERN HERE') ;text-align: center; text-transform: uppercase; font-family: georgia; font-size: 10pt; color: #E5E5E5; border-top-left-radius: 10px; border-top-right-radius: 10px; } -- !> </style> Here is my version for just the top right and left corners to be rounded. (IE does not support rounded corners with css) <style type="text/css"> <!-- .catbg{ background-image: url('http://i657.Backgrounds.jpg'); background-repeat: repeat; text-align: center; text-transform: uppercase; font-family: georgia; font-size: 10pt; color: #E5E5E5; border: 1px solid #000000; -moz-border-radius-topleft: 10px; -moz-border-radius-topright: 10px; border-top-left-radius: 10px; border-top-right-radius: 10px; } --> </style> Rounded corners all around: <style type="text/css"> <!-- .catbg{ background-image: url('http://Backgrounds.jpg'); background-repeat: repeat; text-align: center; text-transform: uppercase; font-family: georgia; font-size: 10pt; color: #E5E5E5; border: 1px solid #000000; -moz-border-radius: 15px; border-radius: 15px; } --> </style>
|
|
Clark-R
Junior Member
Previous Exart Owner
Posts: 294
inherit
170528
0
May 7, 2015 13:36:12 GMT -8
Clark-R
Previous Exart Owner
294
August 2011
exeffect
|
Post by Clark-R on Nov 13, 2011 16:41:40 GMT -8
Ah, I should just stick with the graphics aspect of Proboards. xD
|
|
inherit
I need a new CT, thinking.... [insert Jeopardy theme song here]
110769
0
Aug 21, 2021 0:07:21 GMT -8
Tumbleweed
20,825
September 2007
tumbleweed
|
Post by Tumbleweed on Nov 13, 2011 19:13:29 GMT -8
Ah, I should just stick with the graphics aspect of Proboards. xD Naw, don't be silly. I've done my fair share of posting the wrong thing or things with errors.
|
|
inherit
160091
0
May 9, 2012 16:56:46 GMT -8
`FOREVER & MORE
<333333* Ever :)
50
November 2010
moonspirit
|
Post by `FOREVER & MORE on Nov 14, 2011 18:26:23 GMT -8
I know this is out of the question, but could anyone tell me why my board is all the way to the left? >>.Click<<
|
|
inherit
I need a new CT, thinking.... [insert Jeopardy theme song here]
110769
0
Aug 21, 2021 0:07:21 GMT -8
Tumbleweed
20,825
September 2007
tumbleweed
|
Post by Tumbleweed on Nov 14, 2011 20:34:31 GMT -8
I know this is out of the question, but could anyone tell me why my board is all the way to the left? >>.Click<<Since this isn't a graphics related question it would have been best if you started a new thread in coding support, for future reference. Smangii's side table instructions specifically say you can't use other resize codes since his tables come with a resize. So remove that css resize you have in your header. With that css code is a footer portion of two closing div's so find those and remove them. They are right after this code: Advanced Affiliates Viewer v1 by Chris Now back in your header find this table and remove the red. <table border="0" cellspacing="0" cellpadding="0"> <tr> <td width="100%"><textarea rows="8" name="wordcount2" cols="26" wrap="virtual"></textarea></td> </tr> <tr> <td width="100%"><div align="right"><p><input type="button" value="Count Words" onClick="countit()"> <input type="text" name="wordcount3" size="5"></p> </div></div> </td> </tr> </table> </form></center>
|
|