Global Unsubscribe Page Alignment Question

We are constructing our Global unsubscribe page and cannot seem center align the unsubscribe options. Is there an option to properly center  the suppression lists / unsubscribe verbiage and button that we are overlooking?

Thanks in advance!

Parents
  • Hi Freddy,

    While there are not styling options within the editor for those selections, it is possible to target them with CSS when you toggle to the raw HTML in the editor. I have attached a sample that may help you. You would want to update all of the fonts, colors, etc. to be your desired look/feel.

    Thanks!

    Jana

    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    16
    17
    18
    19
    Example style tag to target unsubscribe options:
    <style>
    html {
    position: relative;
    min-height: 100%;
    box-sizing: border-box;
    }
    *,
    *:after,
    *:before {
    box-sizing: inherit;
    }
    body {
    padding:0px;
    margin:0;
    font-family: 'Raleway', sans-serif;
    background-color:#76787a;
    XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

    Director, Customer Enablement | SugarCRM

Reply
  • Hi Freddy,

    While there are not styling options within the editor for those selections, it is possible to target them with CSS when you toggle to the raw HTML in the editor. I have attached a sample that may help you. You would want to update all of the fonts, colors, etc. to be your desired look/feel.

    Thanks!

    Jana

    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    16
    17
    18
    19
    Example style tag to target unsubscribe options:
    <style>
    html {
    position: relative;
    min-height: 100%;
    box-sizing: border-box;
    }
    *,
    *:after,
    *:before {
    box-sizing: inherit;
    }
    body {
    padding:0px;
    margin:0;
    font-family: 'Raleway', sans-serif;
    background-color:#76787a;
    XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

    Director, Customer Enablement | SugarCRM

Children