Page 1 of 1

Removing the 'Camera Type' from display

PostPosted: Mon Oct 27, 2003 3:30 pm
by arjunrc
Hi,
Pbase automatically shows all the EXIF data including the camera model.
Is there any way for me to edit so that all the EXIF data _except_ the camera model is shown ?

For example http://www.pbase.com/image/22649668
I want to remove the 'Sony Cybershot' indication, but keep the rest.

I dont think this can really be done by CSS since its not to do with style.

regds
arjun

you can by using css

PostPosted: Mon Oct 27, 2003 5:39 pm
by thewedding
the code arround the make/model is

<span class="camera">Sony Cybershot</span>

so just add these lines in your css file

.camera{

display:none;

}

thats it

great - another Q

PostPosted: Mon Oct 27, 2003 6:56 pm
by arjunrc
Thanks webdev, works like a charm.

last question, I also want to disable displaying of full exif data. To that respect, I want to display the usual one line exif, but dont want to provide the 'full exif' link.

This seems to be under the 'exif' class, but according to the code, it uses
link properties of the body. I just want this 'full exif' link to not show up but all other links to show as normal.

anyway to do this ?
regds
arjun

Got the soln.

PostPosted: Mon Oct 27, 2003 7:20 pm
by arjunrc
Thanks, got the correct code for it:
.exif a { display: none; }

PostPosted: Mon Oct 27, 2003 8:21 pm
by thewedding
:D