FM Design
Would you like to react to this message? Create an account in a few clicks or log in to continue.

IMPORTANT

FM Design is in read-only mode, please click here for more information.

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

Recent Tutorials
Top posting users this month

Who is online?
In total there are 11 users online :: 0 Registered, 0 Hidden and 11 Guests :: 1 Bot

None

[ View the whole list ]


Most users ever online was 515 on Tue 14 Sep 2021, 15:24

Hide/Modify Specific Images

View previous topic View next topic Go down

Ange Tuteur
Ange Tuteur
Administrator
Gender : Male
Posts : 4741
Points : 12048
Reputation : 2375
Location : Pennsylvania
Language : EN, JA, FR
Browser : Browser : Brave Forum Version : Forum Version : Forumactif Edge
https://sethclydesdale.github.io/ https://twitter.com/sethc1995

PostAnge Tuteur Sat 09 Nov 2013, 16:34

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.

Hide/Modify Specific Images Captur20
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.

Hide/Modify Specific Images Captur21
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;
}
The CSS above selects all images inside postprofile and removes them, but that's not what we want because that takes away everyone's character. Crying or Very sad

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;
}
The result would be the image noaval10.png being the only image not to be displayed in the postprofile.

Hide/Modify Specific Images Captur22
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;
}
The result of the code above will act the same as the image displayed previously.

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);
}
Hide/Modify Specific Images Captur23
your avatar is tiny sir chivas..

Thanks for reading, and if you have any questions or something to add feel free to post here. Smile
Ikerepc
Ikerepc

Gender : Male
Age : 26
Posts : 170
Points : 4157
Reputation : 48
Location : Croatia
Language : English || Croatian
Browser : Browser : Mozilla Firefox Forum Version : Forum Version : Other
https://twitter.com/ikerepc

PostIkerepc Fri 15 Nov 2013, 13:21

Comments under the images is best Smile

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 :/ )
Ange Tuteur
Ange Tuteur
Administrator
Gender : Male
Posts : 4741
Points : 12048
Reputation : 2375
Location : Pennsylvania
Language : EN, JA, FR
Browser : Browser : Brave Forum Version : Forum Version : Forumactif Edge
https://sethclydesdale.github.io/ https://twitter.com/sethc1995

PostAnge Tuteur Fri 15 Nov 2013, 18:02

heehee, Sir Chivas was my test subject. Razz

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.
Ikerepc
Ikerepc

Gender : Male
Age : 26
Posts : 170
Points : 4157
Reputation : 48
Location : Croatia
Language : English || Croatian
Browser : Browser : Mozilla Firefox Forum Version : Forum Version : Other
https://twitter.com/ikerepc

PostIkerepc Sat 16 Nov 2013, 07:30

he Firefox devtool to do most of my coding. Their style editing is very useful, as well as the inspector to grab selectors.
How I can get it? Thanks.
Ange Tuteur
Ange Tuteur
Administrator
Gender : Male
Posts : 4741
Points : 12048
Reputation : 2375
Location : Pennsylvania
Language : EN, JA, FR
Browser : Browser : Brave Forum Version : Forum Version : Forumactif Edge
https://sethclydesdale.github.io/ https://twitter.com/sethc1995

PostAnge Tuteur Sat 16 Nov 2013, 21:27

http://www.mozilla.org/en-US/firefox/new/

Devtools can be opened by pressing F12, or:
Tools > Web Developer
Sponsored content

PostSponsored content

View previous topic View next topic Back to top

Create an account or log in to leave a reply

You need to be a member in order to leave a reply.

Create an account

Join our community by creating a new account. It's easy!


Create a new account

Log in

Already have an account? No problem, log in here.


Log in

 
Permissions in this forum:
You cannot reply to topics in this forum