Page 1 of 1

CSS HElp!

Posted: Fri Mar 18, 2011 6:01 pm
by redfootagebooby
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!

Re: CSS HElp!

Posted: Fri Mar 18, 2011 6:11 pm
by KEN
Well the following "shud" work:
Solid lines:

Code: Select all

<div style="width:200px;height:100px;border:1px solid blue;">
HTML borders are best created with CSS.
</div>
u can get dotted borders with:

Code: Select all

<div style="width:200px;height:100px;border:2px dotted blue;">
HTML border code - or should that read CSS border code?
</div>
Outset border:

Code: Select all

<div style="width:200px;height:100px;border:2px outset blue;">
HTML border code - or should that read CSS border code?
</div>
try them,i think those shud work perfectly.

Re: CSS HElp!

Posted: Fri Mar 18, 2011 6:24 pm
by redfootagebooby
thanks! i will tell you results after i try!

Re: CSS HElp!

Posted: Fri Mar 18, 2011 6:36 pm
by KEN
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 :

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>