Latest topics
» Forumactif Edge - Releases
by Ange Tuteur Tue 03 Sep 2019, 11:49
» GIFActif - Giphy Button for the Editor
by Ange Tuteur Wed 08 May 2019, 17:21
» Forum Closure
by Ange Tuteur Mon 01 Jan 2018, 01:28
» Chit Chat Thread
by Valoish Sun 31 Dec 2017, 19:15
» Font/Text background color.
by Valoish Sun 31 Dec 2017, 19:11
» Forumactif Messenger - Instant Message Application for Forumotion
by Wolfuryo Sun 31 Dec 2017, 18:24
» [GAME] Count to One Million!
by brandon_g Fri 29 Dec 2017, 18:58
» Post Cards
by manikbiradar Wed 20 Dec 2017, 07:50
» [GAME] Countdown from 200,000
by Valoish Wed 13 Dec 2017, 23:22
» GeekPolice Tech Support Forums - GeekPolice.net
by Dr Jay Mon 11 Dec 2017, 19:12
» Asking about some plugin for Forumotion
by Dr Jay Mon 11 Dec 2017, 19:10
» [GAME] What are you thinking right now?
by Van-Helsing Sat 09 Dec 2017, 14:51
» Widget : Similar topics
by ranbac Wed 06 Dec 2017, 18:11
» Change the Background of the Forum and put an image and how to make prefixs?
by Clement Wed 06 Dec 2017, 15:19
» Hello from Western Australia
by SarkZKalie Wed 06 Dec 2017, 05:34
by Ange Tuteur Tue 03 Sep 2019, 11:49
» GIFActif - Giphy Button for the Editor
by Ange Tuteur Wed 08 May 2019, 17:21
» Forum Closure
by Ange Tuteur Mon 01 Jan 2018, 01:28
» Chit Chat Thread
by Valoish Sun 31 Dec 2017, 19:15
» Font/Text background color.
by Valoish Sun 31 Dec 2017, 19:11
» Forumactif Messenger - Instant Message Application for Forumotion
by Wolfuryo Sun 31 Dec 2017, 18:24
» [GAME] Count to One Million!
by brandon_g Fri 29 Dec 2017, 18:58
» Post Cards
by manikbiradar Wed 20 Dec 2017, 07:50
» [GAME] Countdown from 200,000
by Valoish Wed 13 Dec 2017, 23:22
» GeekPolice Tech Support Forums - GeekPolice.net
by Dr Jay Mon 11 Dec 2017, 19:12
» Asking about some plugin for Forumotion
by Dr Jay Mon 11 Dec 2017, 19:10
» [GAME] What are you thinking right now?
by Van-Helsing Sat 09 Dec 2017, 14:51
» Widget : Similar topics
by ranbac Wed 06 Dec 2017, 18:11
» Change the Background of the Forum and put an image and how to make prefixs?
by Clement Wed 06 Dec 2017, 15:19
» Hello from Western Australia
by SarkZKalie Wed 06 Dec 2017, 05:34
Recent Tutorials
Top posting users this month
Top Achievers
Who is online?
In total there are 29 users online :: 0 Registered, 0 Hidden and 29 Guests :: 2 Bots
None
Most users ever online was 515 on Tue 14 Sep 2021, 15:24
None
Most users ever online was 515 on Tue 14 Sep 2021, 15:24
Hide/Modify Specific Images
Page 1 of 1 • Share
Its been awhile since I posted anything here, so I thought I would talk about hiding a specific image with CSS.
For example I will be using the guest/default image on this board.
hi sir chivas!
Say I only want to show the default image within the profile and not in posts. This is actually quite simple since we can make use of the [attribute=value] CSS selector.
Since we only want to remove this image from one specific area, we need to find the unique selector of the element that its displayed inside. For phpbb3 that would be the postprofile selector.
hi again sir chivas!
Now that we have our selector we can choose to remove any image we want from the postprofile.
As I mentioned before we will need to make use of the [attribute=value] CSS selector to remove our specific image. For our selection of an image it would be [src="IMG SRC"], now that we have that we can work our magic!
sir chivas where did your avatar go?
We can also shorten this CSS by using the [attribute*=value] CSS selector. This will select any src attribute which contains the substring noaval10.png.
Aside from removing these images we can also add almost any style modification to them that we want. Such as add hover effects, resize, shadows, and so on..
your avatar is tiny sir chivas..
Thanks for reading, and if you have any questions or something to add feel free to post here.
For example I will be using the guest/default image on this board.
hi sir chivas!
Say I only want to show the default image within the profile and not in posts. This is actually quite simple since we can make use of the [attribute=value] CSS selector.
Since we only want to remove this image from one specific area, we need to find the unique selector of the element that its displayed inside. For phpbb3 that would be the postprofile selector.
hi again sir chivas!
Now that we have our selector we can choose to remove any image we want from the postprofile.
- Code:
.postprofile img{
display:none;
}
As I mentioned before we will need to make use of the [attribute=value] CSS selector to remove our specific image. For our selection of an image it would be [src="IMG SRC"], now that we have that we can work our magic!
- Code:
.postprofile img[src="http://i57.servimg.com/u/f57/18/21/41/30/noaval10.png"]{
display:none;
}
sir chivas where did your avatar go?
We can also shorten this CSS by using the [attribute*=value] CSS selector. This will select any src attribute which contains the substring noaval10.png.
- Code:
.postprofile img[src*="noaval10.png"]{
display:none;
}
Aside from removing these images we can also add almost any style modification to them that we want. Such as add hover effects, resize, shadows, and so on..
- Code:
.postprofile img[src*="noaval10.png"]{
transform:scale(0.5);
}
your avatar is tiny sir chivas..
Thanks for reading, and if you have any questions or something to add feel free to post here.
Comments under the images is best
What program you using?
I have FrontPage 2003, but I want to download new... And what you think about Dreamweaver (Adobe, I don't know right name :/ )
What program you using?
I have FrontPage 2003, but I want to download new... And what you think about Dreamweaver (Adobe, I don't know right name :/ )
heehee, Sir Chivas was my test subject.
I use the Firefox devtool to do most of my coding. Their style editing is very useful, as well as the inspector to grab selectors. It comes in handy for reactive problem solving.
The scratch pad has also had updates which has allowed me to further practice my scripting.
I've never used Dreamweaver.
I use the Firefox devtool to do most of my coding. Their style editing is very useful, as well as the inspector to grab selectors. It comes in handy for reactive problem solving.
The scratch pad has also had updates which has allowed me to further practice my scripting.
I've never used Dreamweaver.
http://www.mozilla.org/en-US/firefox/new/
Devtools can be opened by pressing F12, or:
Tools > Web Developer
Devtools can be opened by pressing F12, or:
Tools > Web Developer
- Sponsored content
Similar topics
Create an account or log in to leave a reply
You need to be a member in order to leave a reply.
Page 1 of 1
Permissions in this forum:
You cannot reply to topics in this forum