Topic: Navigation problems in embedding [SOLVED]

My gallery functions well while standalone
http://michel.balmont.free.fr/photo/cam … index.html

Not so well when embedded
Absence of right navigation button.
Disfunction of dots (once on the fourth you can't come back to one of the three fist ones).
Margin on the left.
etc.
http://michel.balmont.free.fr/photo/cam … efort.html

All of this seems to have the same cause.
Which I can't find.

Can you help me ?

Thanks.

Michel

Re: Navigation problems in embedding [SOLVED]

The problem is with the following CSS code on your web page (specifically the text-indent line):

body
{
    text-indent:24pt;
    background-color:#222222;
    font-family: 'Open Sans';
    color:white;
    font-size: 10pt;
}

This code will apply to all elements on your web page (and the gallery has no option but to inherit these CSS rules).
Either remove the text-indent line or apply these CSS rules to only those elements on your web page which require them through use of CSS selectors (classes and ids).
This should solve your problem.

Re: Navigation problems in embedding [SOLVED]

Thank you very much.

Re: Navigation problems in embedding [SOLVED]

You're welcome.