Hey Robax !! Thanks a lot for helping me !! Alignement was already on left. I have tried to set the alignement (of the module - in settings) to center, and then again to left. Still the same. No modification. I have checked my portal.css:
/* used to set the different module align options - from module settings */
.DNNAlignleft
{
text-align: left;
}
.DNNAlignright
{
text-align: right;
}
.DNNAligncenter
{
text-align: center;
} I have restarted my DNN application, modified web.config (to force refresh), clear cache settings
==> Still centered...
But I have seen in the HTML Code, that I have the following: <td id="dnn_ctr498_ContentPane" align="center" style="padding-left: 5px; padding-right: 5px; padding-top: 5px; padding-bottom: 5px;" class="DNNAligndefault"> And this is coming, as stated by chocolate, from the container.ascx file.... So, I have align=center and then class = DNNAligndefault. Why default ??? It should be LEFT, isn't it. Why isn't it taken into account ??? Any other idea ??? I do not really want to modify all my container, it took time. That's incredible, I do not see what could have changed between V4.5.5 and V4.8.2 DV FX
PS: In the mean time, I had the idea to add a style .DNNAligndefault
{
text-align: left;
}
But that's not so nice... |