CSS HElp!

c, c++, php, html, sql ..etc discussion. also includes codes and source codes.
Post Reply
redfootagebooby
Allie
Allie
Posts: 60
Joined: Thu Feb 24, 2011 8:38 am

CSS HElp!

Post 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!
User avatar
KEN
Special
Special
Posts: 751
Joined: Thu Jan 28, 2010 8:11 am

Re: CSS HElp!

Post 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.
redfootagebooby
Allie
Allie
Posts: 60
Joined: Thu Feb 24, 2011 8:38 am

Re: CSS HElp!

Post by redfootagebooby »

thanks! i will tell you results after i try!
User avatar
KEN
Special
Special
Posts: 751
Joined: Thu Jan 28, 2010 8:11 am

Re: CSS HElp!

Post 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>
Post Reply