Page 1 of 1

How can I change the default title (no filename.jpg)

Posted: 23 Jan 2009, 04:17
by cl9m
Hi,

How can I change the default title? I don't want filename.jpg
when the title is empty.

thx

Posted: 23 Jan 2009, 10:16
by tomrock
Put a space in the Title field.

Posted: 23 Jan 2009, 11:11
by cl9m
Thank's but it's not the realy problem.

When I upload 120 pictures I must change all title! 120!
By default I want no-title.

it's possible?

Posted: 23 Jan 2009, 17:12
by Nick
Well there a post about cssing imagevue frontend here:
viewtopic.php?t=4270

You need to add display: none in .text_1_title:
Code
.text_1_title {
display: none;
} 
Something like this.

Please make sure you clear your browser cache before checking frontend.

Posted: 26 Jan 2009, 03:40
by cl9m
thanks but that's don't work, I've clear my browser cache many times.

But when I upload news pictures I've always the filename.jpg as default title.

:roll:

Posted: 29 Jan 2009, 22:51
by mjau-mjau
Well, if its displaying "filename.jpg", that is because you are showing "filename.jpg" on your startpage somehow ... Can't you give this file a new title from admin?

Try this:
Code
.filemod_title {
	display: none;
}

Posted: 30 Jan 2009, 05:56
by cl9m
I've try this but that don't work.

I try it too
Code
.text_1_filename {
   display: none; 
}
that don't work
I've clear my web browers cache and I've test it on ie and ff.

I've always in text1 by default the filename.jpg when I don't have wrote title.

Please help me

Posted: 31 Jan 2009, 01:43
by mjau-mjau
I'll need your link ...

Posted: 31 Jan 2009, 08:27
by cl9m

Posted: 01 Feb 2009, 01:31
by mjau-mjau
You need to set .text_1_title ->
Code
.text_1_title {
	font-size: 18px;
	color: #99CCFF;
	display: none;
}
But, if you simply want to disable the TITLE above the image, why not just turn it off from config? Go to admin -> config -> image.text.text1.enabled ... uncheck the item! Optionally, remove the "title" from the "items" list ...

Posted: 02 Feb 2009, 03:08
by cl9m
thanks but when i've a title now, i've nothing.
same as
But, if you simply want to disable the TITLE above the image, why not just turn it off from config? Go to admin -> config -> image.text.text1.enabled ... uncheck the item! Optionally, remove the "title" from the "items" list ...
I just want no-filename.jpg when I don't have title, and picture's title when it existe.

:oops:

Posted: 02 Feb 2009, 20:47
by mjau-mjau
Well, just like FLICKR and most other pro gallery solutions, TITLE is simply meant as an ALIAS for filename. Basically TITLE/FILENAME is the same option ... You can choose to display it or not, but it is a single entity. The TITLE of your image, is by default the filename ... but it can be changed by editing the title of course.

If you want to only display some text if it exists, try the "custom" item instead.
viewtopic.php?t=3524
It will only display if you have added any text into it.

Posted: 03 Feb 2009, 02:46
by cl9m
ok I've understand.
thanks for your answers