understood your post… but site has 2011 active now and its working… so cannot look at issue… and the start upload button activity/availability/etc is all with the plupload code itself and no sp interaction…
Support Forum
In the forum admin > components > file uploads panel use the code ‘fr’ in the language setting. That will run the French language file. We have seen one or two issues with the plupload language files but have no reports of the French file being a problem.
To keep it simple I would just add:
#spMainContainer a:visited,
#spMainContainer .spLink:visited {
color: red;
}
to your SP or WP theme CSS. Obviously changing the colour ‘red’ to whatever your choice is.
That’s trickier as they both use the same style class.
So you will need to define your own class name – add that to the arguments for the topic name (in the spForumView template – function sp_TopicIndexName() and then add that class name to the CSS style we defined yesterday.
Well in the default template the call probably looks like:
sp_TopicIndexName('tagClass=spRowName', __sp('Browse the thread %NAME%'));
So you can add a new class to that as in
sp_TopicIndexName('tagClass=spRowName yourClassName', __sp('Browse the thread %NAME%'));
Then in the CSS use:
#spMainContainer .yourClassName.spLink:visited {
which should do it. Mind you I have not tried yet…

I don’t understand. If this is related the question about visited topic links then as per what I outlined in post 39 above. If something else can you please explain?
I’m looking for the file where this html tag is, to replace class “= spRowName” with my own class
<a id=”spTopicIndexName11″ class=”spRowName vtip” title=”Parcourir le fil test image enoyée2″ href=”http://www.lemzosekka.com/forum/forum/kenzo/test-image-enoyee2/”>test image enoyée2</a>
you don’t change the HTML in core. code You change the call in the template file as I pointed to. I see I didn’t name the file – spForumView.php in the /templates folder of your p theme.

We really have covered all of this above.
Post 39 above – that shows you how to change the class name in the template function call. if you don’t want to add a new class as I suggested then just change the name of the class already being used. it is there in the function call arguments. I pasted it in for you.
Post 43 above tells you exactly which file the call is in and where it is stored. ‘spForumnView.php’ in your SP themes /templates folder.
CSS changes go into the themes styles file (in the /styles folder of the Sp theme you are using) which will either be a .css or a .php file depending on what theme you are using. either way the file name is the name of the theme.
If I am truly missing something here then I am sorry but you will need to explain to me what it is because as far as I can see we have covered it all.

