CurvedSpace Forums: Question for the HTML/CSS nerds. - CurvedSpace Forums

Jump to content

  • (3 Pages)
  • +
  • 1
  • 2
  • 3
  • You cannot start a new topic
  • You cannot reply to this topic

Question for the HTML/CSS nerds.

#1 {lang:macro__useroffline}   x.. {lang:icon}

  • I Can't Decide On An Avatar
  • Icon
  • {lang:view_blog}
  • {lang:view_gallery}
  • Group: Moderator
  • Posts: 6,143
  • Joined: 05-May 06

Posted 07 July 2009 - 04:45 PM

How do I stop these effects from effecting my images?

Here's the CSS i'm using:

CODE
<style type= "text/css" title="styleid" >
    a:link {
          color: #FFFFFF;
          text-decoration: none;}

    a:visited {
          color: #FFFFFF;
          text-decoration: none;}

    a:hover {
          color: #FFFFFF;
          text-decoration: none;
          font-weight: bold;}

    a:active {
          color: #FFFFFF;
          text-decoration: none;}
</style>

0

#2 {lang:macro__useroffline}   Zoo {lang:icon}

  • ~@~@~@~@~@~@~
  • Icon
  • {lang:view_blog}
  • Group: Moderator
  • Posts: 1,615
  • Joined: 13-July 04

Posted 07 July 2009 - 10:40 PM

I have to force my code so much I didn't even consider it being possible to fix that border. No quick answer from google (which I assume is why you're posting here bluetongue.gif), but I would be interested in the answer as well.
0

#3 {lang:macro__useroffline}   Kimojuno {lang:icon}

  • W00T! :D
  • Icon
  • {lang:view_blog}
  • {lang:view_gallery}
  • Group: Global Moderator
  • Posts: 4,536
  • Joined: 09-May 04

Posted 08 July 2009 - 02:55 PM

Post an example, please. TheSmile.gif

{lang:macro__view_post}Xmadole, on 09 August 2009 - 09:28 AM, said:

i wish i actually read the first post of threads.


Posted Image
0

#4 {lang:macro__useroffline}   x.. {lang:icon}

  • I Can't Decide On An Avatar
  • Icon
  • {lang:view_blog}
  • {lang:view_gallery}
  • Group: Moderator
  • Posts: 6,143
  • Joined: 05-May 06

Posted 08 July 2009 - 06:19 PM

QUOTE (Kimojuno @ Jul 8 2009, 03:55 PM) <{POST_SNAPBACK}>
Post an example, please. TheSmile.gif


http://79.77.103.53/example.html


0

#5 {lang:macro__useroffline}   Kimojuno {lang:icon}

  • W00T! :D
  • Icon
  • {lang:view_blog}
  • {lang:view_gallery}
  • Group: Global Moderator
  • Posts: 4,536
  • Joined: 09-May 04

Posted 09 July 2009 - 03:31 AM

QUOTE (Xmadole @ Jul 8 2009, 02:19 PM) <{POST_SNAPBACK}>
QUOTE (Kimojuno @ Jul 8 2009, 03:55 PM) <{POST_SNAPBACK}>
Post an example, please. TheSmile.gif


http://79.77.103.53/example.html


How is it effecting it?

{lang:macro__view_post}Xmadole, on 09 August 2009 - 09:28 AM, said:

i wish i actually read the first post of threads.


Posted Image
0

#6 {lang:macro__useroffline}   Yevgeny Borisovitch Volgin {lang:icon}

  • Metal Gear enthusiast
  • Icon
  • {lang:view_blog}
  • Group: Moderator
  • Posts: 2,192
  • Joined: 19-August 05

Posted 09 July 2009 - 07:39 AM

QUOTE (Kimojuno @ Jul 9 2009, 04:31 AM) <{POST_SNAPBACK}>
QUOTE (Xmadole @ Jul 8 2009, 02:19 PM) <{POST_SNAPBACK}>
QUOTE (Kimojuno @ Jul 8 2009, 03:55 PM) <{POST_SNAPBACK}>
Post an example, please. TheSmile.gif


http://79.77.103.53/example.html


How is it effecting it?


It's giving it a white border, amirite?


(wyv btw)
Posted Image
0

#7 {lang:macro__useroffline}   x.. {lang:icon}

  • I Can't Decide On An Avatar
  • Icon
  • {lang:view_blog}
  • {lang:view_gallery}
  • Group: Moderator
  • Posts: 6,143
  • Joined: 05-May 06

Posted 09 July 2009 - 09:57 AM

QUOTE (Wyv @ Jul 9 2009, 08:39 AM) <{POST_SNAPBACK}>
QUOTE (Kimojuno @ Jul 9 2009, 04:31 AM) <{POST_SNAPBACK}>
QUOTE (Xmadole @ Jul 8 2009, 02:19 PM) <{POST_SNAPBACK}>
QUOTE (Kimojuno @ Jul 8 2009, 03:55 PM) <{POST_SNAPBACK}>
Post an example, please. TheSmile.gif


http://79.77.103.53/example.html


How is it effecting it?


It's giving it a white border, amirite?

Rite.
0

#8 {lang:macro__useroffline}   Ratty {lang:icon}

  • Bigrat2
  • Icon
  • {lang:view_blog}
  • Group: Super Moderator
  • Posts: 10,910
  • Joined: 01-October 03

Posted 09 July 2009 - 11:57 AM

CODE
img {
     border: 0px none;
}


Try adding that. Should remove border from any and all images you put on the page with that CSS.
Empty sig is empty.
0

#9 {lang:macro__useroffline}   x.. {lang:icon}

  • I Can't Decide On An Avatar
  • Icon
  • {lang:view_blog}
  • {lang:view_gallery}
  • Group: Moderator
  • Posts: 6,143
  • Joined: 05-May 06

Posted 09 July 2009 - 12:03 PM

QUOTE (Ratty @ Jul 9 2009, 12:57 PM) <{POST_SNAPBACK}>
CODE
img {
     border: 0px none;
}


Try adding that. Should remove border from any and all images you put on the page with that CSS.


<3

Hehe thanks.
0

#10 {lang:macro__useroffline}   Ratty {lang:icon}

  • Bigrat2
  • Icon
  • {lang:view_blog}
  • Group: Super Moderator
  • Posts: 10,910
  • Joined: 01-October 03

Posted 09 July 2009 - 02:51 PM

You're welcome. xD

Btw, doesn't take a "HTML/CSS nerd" to get that. bluetongue.gif

Also:
QUOTE
How do I stop these effects from effecting my images?

It doesn't effect the images. It affects them.

However, it effects the border around the image.

L2English.
Empty sig is empty.
0

#11 {lang:macro__useroffline}   Darkness {lang:icon}

  • CHILDREN!
  • Icon
  • {lang:view_blog}
  • Group: Super Moderator
  • Posts: 11,225
  • Joined: 12-April 03

Posted 09 July 2009 - 07:50 PM

QUOTE (Ratty @ Jul 9 2009, 07:51 AM) <{POST_SNAPBACK}>
QUOTE
How do I stop these effects from effecting my images?

It doesn't effect the images. It affects them.

However, it effects the border around the image.

No, it affects the border around the image. However, it effects an undesirable effect. xD (Unless there was no border previously? The example thing doesn't seem to work any more, so I'm not really sure what the situation was.)







“In the valley of hope, there is no winter.”

0

#12 {lang:macro__useroffline}   x.. {lang:icon}

  • I Can't Decide On An Avatar
  • Icon
  • {lang:view_blog}
  • {lang:view_gallery}
  • Group: Moderator
  • Posts: 6,143
  • Joined: 05-May 06

Posted 09 July 2009 - 07:55 PM

Quiet you.
0

#13 {lang:macro__useroffline}   Kimojuno {lang:icon}

  • W00T! :D
  • Icon
  • {lang:view_blog}
  • {lang:view_gallery}
  • Group: Global Moderator
  • Posts: 4,536
  • Joined: 09-May 04

Posted 09 July 2009 - 10:14 PM

You can also do border="0" in your <img fields. grnwink.gif

{lang:macro__view_post}Xmadole, on 09 August 2009 - 09:28 AM, said:

i wish i actually read the first post of threads.


Posted Image
0

#14 {lang:macro__useroffline}   Ratty {lang:icon}

  • Bigrat2
  • Icon
  • {lang:view_blog}
  • Group: Super Moderator
  • Posts: 10,910
  • Joined: 01-October 03

Posted 10 July 2009 - 01:29 AM

QUOTE (Kimojuno @ Jul 10 2009, 08:14 AM) <{POST_SNAPBACK}>
You can also do border="0" in your <img fields. grnwink.gif

Yep. But putting it in the CSS is better biglaugh.gif

QUOTE (Darky! =D @ Jul 10 2009, 05:50 AM) <{POST_SNAPBACK}>
QUOTE (Ratty @ Jul 9 2009, 07:51 AM) <{POST_SNAPBACK}>
QUOTE
How do I stop these effects from effecting my images?

It doesn't effect the images. It affects them.

However, it effects the border around the image.

No, it affects the border around the image. However, it effects an undesirable effect. xD (Unless there was no border previously? The example thing doesn't seem to work any more, so I'm not really sure what the situation was.)

There's no border for images, and then he used the CSS making the border. He wanted to remove the border again. So yes, effecting the border. bluetongue.gif
Empty sig is empty.
0

#15 {lang:macro__useroffline}   Kimojuno {lang:icon}

  • W00T! :D
  • Icon
  • {lang:view_blog}
  • {lang:view_gallery}
  • Group: Global Moderator
  • Posts: 4,536
  • Joined: 09-May 04

Posted 10 July 2009 - 12:44 PM

QUOTE (Ratty @ Jul 9 2009, 09:29 PM) <{POST_SNAPBACK}>
QUOTE (Kimojuno @ Jul 10 2009, 08:14 AM) <{POST_SNAPBACK}>
You can also do border="0" in your <img fields. grnwink.gif

Yep. But putting it in the CSS is better biglaugh.gif

QUOTE (Darky! =D @ Jul 10 2009, 05:50 AM) <{POST_SNAPBACK}>
QUOTE (Ratty @ Jul 9 2009, 07:51 AM) <{POST_SNAPBACK}>
QUOTE
How do I stop these effects from effecting my images?

It doesn't effect the images. It affects them.

However, it effects the border around the image.

No, it affects the border around the image. However, it effects an undesirable effect. xD (Unless there was no border previously? The example thing doesn't seem to work any more, so I'm not really sure what the situation was.)

There's no border for images, and then he used the CSS making the border. He wanted to remove the border again. So yes, effecting the border. bluetongue.gif


When linking somewhere with a image, a border is naturally placed around said image. grnwink.gif

{lang:macro__view_post}Xmadole, on 09 August 2009 - 09:28 AM, said:

i wish i actually read the first post of threads.


Posted Image
0

  • (3 Pages)
  • +
  • 1
  • 2
  • 3
  • You cannot start a new topic
  • You cannot reply to this topic

1 User(s) are reading this topic
0 members, 1 guests, 0 anonymous users