Former Member
inherit
guest@proboards.com
188496
0
Nov 1, 2024 7:33:35 GMT -8
Former Member
0
January 1970
Former Member
|
Post by Former Member on Jun 9, 2014 13:27:00 GMT -8
@womenonly, can you link me to the forum where you're working on getting this implemented so I can see where you're at so far? David:
I have already accomplished my curly corner.
link to forum and atthismoment.proboards.com Both forums have the curly corner. If the code would have both, height and width then the curly corner would make for a nice dynamic container.
|
|
inherit
The Great Cinnamon Roll
191518
0
Oct 19, 2016 22:17:44 GMT -8
David Clark
Care for some tai chi with your chai tea?
17,602
March 2013
davidlinc1
|
Post by David Clark on Jun 9, 2014 13:36:50 GMT -8
You should be able to control the width and height of the little page curl by using this CSS at the bottom of your style sheet, @womenonly.
.curlycontainer .innerdiv { background-size: 25px 25px; }
Red controls the width, and green controls the height.
|
|
Former Member
inherit
guest@proboards.com
188496
0
Nov 1, 2024 7:33:35 GMT -8
Former Member
0
January 1970
Former Member
|
Post by Former Member on Jun 10, 2014 0:06:06 GMT -8
You should be able to control the width and height of the little page curl by using this CSS at the bottom of your style sheet, @womenonly. .curlycontainer .innerdiv {background-size: 25px 25px;}
Red controls the width, and green controls the height. David:
Thank you for your help.
The curly corner code was added to the top of my forum's home template. In what part of the curly corner css & html code do I add your code?
www.dynamicdrive.com/ www.dynamicdrive.com/style/csslibrary/item/curly-corner-container/
<style type="text/css">
.curlycontainer{ border: 1px solid #b8b8b8; margin-bottom: 1em; width: 300px; }
.curlycontainer .innerdiv{ background: transparent url(http://i61.tinypic.com/vh9j09.png) bottom right no-repeat; position: relative; left: 2px; top: 2px; padding: 1px 4px 15px 5px; }
</style>
<div class="curlycontainer"> <div class="innerdiv"> <b>Some title</b> <br /> Some text here.Some text here. Some text here.<br /> Some text here.Some text here. Some text here.<br /> Some text here.Some text here. Some text here.<br /> Some text here.Some text here. </div> </div>
|
|
#eb7100
33409
0
1
Oct 19, 2024 14:37:42 GMT -8
Brian
48,130
November 2004
smashmaster3
|
Post by Brian on Jun 10, 2014 7:58:36 GMT -8
Add it before </style> in the code you posted, @womenonly.
|
|