Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Any questions. Ask here!
#11
(01-30-2010, 06:02 PM)Sam Wrote:
Code:
#centerscreen
{
width: 700px;
margin: 0 auto
}

Hmmm.... LOL I even learned something.... Nice man... It's easier then the method I use...
Code:
#centerscreen
{
position:absolute;
width: 700px;
height:300px;
left:50%;
margin-left:-350px;
}

That was a good answer, thank you! ++
Reply
#12
Wow thanks allot Smile

Just keep the questions coming. I will TRY and answer them. I was nearly stumped by master of the universe Smile
Reply
#13
NP...

I have another one!
You have a navigation where the links need to be underlined when the mouse is over one, the color of underline needs to be different than the links color...
Reply
#14
This one is quite easy. It's a little trick I picked up a while ago...

Code:
<p style="text-decoration:underline;color:red;"><span style="font:bold 12px arial;color:black;">Black text, red underline</span></p>

The underline code is being applied first in this example
Code:
<p style="text-decoration:underline;color:red;">

Then the black text code next
Code:
<span style="font:bold 12px arial;color:black;">

Of course change the colors to your liking.
Reply
#15
That's a good one, really nice!!
However, this would be hard to apply on a link....

A method I use is the following...

Code:
a {
    text-decoration:none;
    color:red;
}

a:hover {
    border-bottom:1px solid blue;
    margin-top:-1px; /* because of the border */
}

Anyway good work mate!!
Reply
#16
Thanks ! Keep the questions coming.
Reply
#17
What Server OS would you recommend running, and why?
Reply
#18
I'm guessing this is for web hosting?

Well this all depends on what you want to do with it...

-I suggest if you want great security using OpenBSd
-If you're looking for compatibility with all Windows products then you should obviously choose Windows.
- If you looking for the best for let's say PHP then choose Linux.

This answer isn't very good please good you say what you want to host then I can provide a more detailed answer.
Reply
#19
(01-30-2010, 07:45 PM)Sam Wrote: I'm guessing this is for web hosting?

Well this all depends on what you want to do with it...

-I suggest if you want great security using OpenBSd
-If you're looking for compatibility with all Windows products then you should obviously choose Windows.
- If you looking for the best for let's say PHP then choose Linux.

This answer isn't very good please good you say what you want to host then I can provide a more detailed answer.
For novice web-designers and such, I'd recommend Debian.
Do what thou wilt shall be the whole of the Law. Love is the law, love under will.
.::The Rights of Man::.
Reply


Possibly Related Threads…
Thread Author Replies Views Last Post
  Need help, basic questions †HøMø J£SüS†™ 2 897 12-24-2009, 03:39 AM
Last Post: manipulate
  Some questions about security. Elektrisk 9 1,321 12-11-2009, 04:28 AM
Last Post: manipulate

Forum Jump:


Users browsing this thread: 1 Guest(s)