If anyone is good in CSS , please help me. I have a menu column in my website as sethioz.com has. I want to make border and outlines around menu section like sethioz did (violet outlines - width at top is high, low at bottom) I need that CSS script. I have looked into the style.css sethioz is using in his New worlds e107 theme. I copied and paste scripts such as . caption cell is used for main menu in sethioz.com. but ithe code is not working on my theme. So, explain the codes how can i make borders / outlines.
Note: 1. If you dont understand my question, ask me i will help you more
2. If you dont know answer, please dont reply to this thread
3. Please dont make irrelevant replies such as your question is shit, i dont know what are you talking about etc etc!
CSS HElp!
Re: CSS HElp!
Well the following "shud" work:
Solid lines:
u can get dotted borders with:
Outset border:
try them,i think those shud work perfectly.
Solid lines:
Code: Select all
<div style="width:200px;height:100px;border:1px solid blue;">
HTML borders are best created with CSS.
</div>
Code: Select all
<div style="width:200px;height:100px;border:2px dotted blue;">
HTML border code - or should that read CSS border code?
</div>
Code: Select all
<div style="width:200px;height:100px;border:2px outset blue;">
HTML border code - or should that read CSS border code?
</div>
-
- Allie
- Posts: 60
- Joined: Thu Feb 24, 2011 8:38 am
Re: CSS HElp!
thanks! i will tell you results after i try!
Re: CSS HElp!
and please,i m not a pro at HTML,so i might make mistakes :)
try this one too for all combined borders like dotted,lined all together :
try this one too for all combined borders like dotted,lined all together :
Code: Select all
<div style="width:200px;height:100px;border-width:6px;border-color:blue;border-style:dotted dashed solid double;">
Create borders for any HTML element.
</div>