Reply To: Styling GP hooks

Home Forums Support Styling GP hooks Reply To: Styling GP hooks

Home Forums Support Styling GP hooks Reply To: Styling GP hooks

#99155
Tom
Lead Developer
Lead Developer

You shouldn’t really be using tables to display information like this – you should be using divs.

For example:

<div class="grid-container grid-parent">
      <div class="grid-30">
          social icons in here
      </div>
      <div class="grid-70" style="text-align:right;">
          other info in here
      </div>
</div>

If you must use tables, try removing the width=”” attribute, and set the style width attribute to “max-width” instead.

Let me know if this helps or not 🙂