Navigation
This is archived content. Visit our new forum.
  • Author
    Posts
  • #134380

    Bruno R
    Participant

    Hi there,
    I’m trying to align transparent square button on the right side and they always stay on the left. How can I change that? We try to use short code given on the demo page but it doesn’t work either. It is write this way for now:

    [icon type=”plus-circle” float=”right”]For more information

    This is my page :http://gbdesign-studio.com/duchesne/

    All the buttons below text on the right columns are supposed to be align to the right.

    thank you!

    #134591

    Darshana
    Moderator

    Hi there,

    Add a special class to those buttons (class=”my-right-btn”) and use following CSS rule below, place it into your Customizer, Custom > CSS section using the menu Appearance -> Customize.

    [button class="my-right-btn" href="#" title="Title" target="blank" shape="square" size="mini" icon_only="true"] My Button [/button]

    .my-right-btn {
        float: right;
    }
    

    Hope that helps.