inherit
141078
0
Oct 24, 2022 8:40:45 GMT -8
rassy
579
June 2009
rassy
|
Code
Apr 13, 2017 13:11:19 GMT -8
Post by rassy on Apr 13, 2017 13:11:19 GMT -8
I am trying to lower the size of my new/not new post icons on my board. i was given this code: td.icon img{width:70px;} however it altered the size of my images on my forum info and stats section. i just want the new/not new images to be changed
|
|
inherit
2671
0
May 14, 2013 14:40:03 GMT -8
Peter
🐺
10,615
February 2002
peter3
|
Code
Apr 13, 2017 13:51:51 GMT -8
Jaguar likes this
Post by Peter on Apr 13, 2017 13:51:51 GMT -8
.board.item td.icon img {
width: 70px;
}
Just need to be more specific with the selector.
|
|
inherit
141078
0
Oct 24, 2022 8:40:45 GMT -8
rassy
579
June 2009
rassy
|
Code
Apr 13, 2017 14:42:22 GMT -8
Post by rassy on Apr 13, 2017 14:42:22 GMT -8
.board.item td.icon img {
width: 70px;
} Just need to be more specific with the selector. how would i go about doing that?
|
|
inherit
201984
0
Sept 11, 2023 1:23:07 GMT -8
P̌̓aͧś̀t̀u͒le͆o͂2̀3̃̓
Using My Talents Elsewhere
3,314
November 2013
pastuleo23
|
Post by P̌̓aͧś̀t̀u͒le͆o͂2̀3̃̓ on Apr 15, 2017 2:05:03 GMT -8
.board.item td.icon img {
width: 70px;
} Just need to be more specific with the selector. how would i go about doing that? Wherever you had the other code, use this code instead
|
|
inherit
141078
0
Oct 24, 2022 8:40:45 GMT -8
rassy
579
June 2009
rassy
|
Code
Apr 15, 2017 7:40:57 GMT -8
Post by rassy on Apr 15, 2017 7:40:57 GMT -8
how would i go about doing that? Wherever you had the other code, use this code instead I don't know what you mean by "other code".
|
|
inherit
217348
0
Jul 27, 2022 7:26:44 GMT -8
Lynx
5,846
January 2015
msg
|
Post by Lynx on Apr 15, 2017 7:46:55 GMT -8
I am trying to lower the size of my new/not new post icons on my board. i was given this code: td.icon img{width:70px;} however it altered the size of my images on my forum info and stats section. i just want the new/not new images to be changed Wherever you had put that code that's in green, use the one Peter gave you in place of it. Replace this: td.icon img{width:70px;}
with this: .board.item td.icon img {
width: 70px;
}
|
|