Shape rotate

gal.attila.atcs
14 Posts
gal.attila.atcs posted this 24 September 2020
Ask a Question

Hi !

Can I rotate the basic shapes?

Thanks, Attila

Hi ! Can I rotate the basic shapes? Thanks, Attila
Vote to pay developers attention to this features or issue.
4 Replies
Order By: Standard | Newest
Support Team
Support Team posted this 24 September 2020

Hi Attila,

No, there is no shape rotate option in the application.

...................................................
Sincerely,
Hella
Nicepage Support Team

Please subscribe to our YouTube channel: http://youtube.com/nicepage?sub_confirmation=1
Follow us on Facebook: http://facebook.com/nicepageapp

Hi Attila, No, there is no shape rotate option in the application. ................................................... Sincerely, Hella Nicepage Support Team Please subscribe to our YouTube channel: http://youtube.com/nicepage?sub_confirmation=1 Follow us on Facebook: http://facebook.com/nicepageapp
gal.attila.atcs
14 Posts
gal.attila.atcs posted this 24 September 2020

Hi Attila,

No, there is no shape rotate option in the application.

...................................................
Sincerely,
Hella
Nicepage Support Team

Please subscribe to our YouTube channel: http://youtube.com/nicepage?sub_confirmation=1
Follow us on Facebook: http://facebook.com/nicepageapp

Thanks

> Hi Attila, > > No, there is no shape rotate option in the application. > > ................................................... > Sincerely, > Hella > Nicepage Support Team > > Please subscribe to our YouTube channel: http://youtube.com/nicepage?sub_confirmation=1 > Follow us on Facebook: http://facebook.com/nicepageapp Thanks
Laci
1 Posts
Laci posted this 14 February 2021

You can rotate a shape with custom css:

  1. insert a shape and in CSS CLASS area add a class name (for example x1) - the position and size are no matter.

  2. click edit css and insert this (for example)
    x1 {
    background: #07192feb;
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    opacity: 0.95 !important;
    position: absolute !important;
    text-align: center;
    width: 350px !important;
    height: 350px !important;
    top: 263px;
    right: 349px;
    margin: 0 !important;
    }
    The postition and size of the shape definiated in the css line (width and height - top bottom, left or right... as you like it)

  3. If you would like to hide the overflow elements, add in CSS CLASS area EDIT CSS this:

section#blockID {
overflow: hidden !important;
}
section#blockID div {position:relative;}

You can rotate a shape with custom css: 1. insert a shape and in CSS CLASS area add a class name (for example x1) - the position and size are no matter. 2. click edit css and insert this (for example) x1 { background: #07192feb; -webkit-transform: rotate(45deg); -moz-transform: rotate(45deg); -ms-transform: rotate(45deg); -o-transform: rotate(45deg); opacity: 0.95 !important; position: absolute !important; text-align: center; width: 350px !important; height: 350px !important; top: 263px; right: 349px; margin: 0 !important; } The postition and size of the shape definiated in the css line (width and height - top bottom, left or right... as you like it) 3. If you would like to hide the overflow elements, add in CSS CLASS area EDIT CSS this: section#blockID { overflow: hidden !important; } section#blockID div {position:relative;}

Last edited 14 February 2021 by Laci

gal.attila.atcs
14 Posts
gal.attila.atcs posted this 21 February 2021

Thanks

Thanks
You must log in or register to leave comments