• Resolved Res Rickli

    (@res-rickli)


    I encountered a serious incompatibility between pixgridder and the wordpress-theme ‘Travelify’ by Colorlib. Before and after every link an unwanted line break is inserted, which makes the text pretty unreadable.
    Text example as entered in Pixgridder: ... ihr Name war <a title="sample link" href="https://www.google.de/" target="_blank">Lorem Ipsum</a>, hinaus zu gehen...
    See the live example: https://www.maerchenstund.ch/tstwp/de/res-testwp/
    (the line break before and after “Lore ipsum” is unwanted)
    Is there a solution or a workaround?

    Versions: Pixgridder 2.0.5,
    Theme: Travelify by Colorlib 2.3.2
    all browsers

Viewing 2 replies - 1 through 2 (of 2 total)
  • Plugin Author manuelmasia

    (@manuelmasia)

    Hi,

    the theme has got in its stylesheet:

    .column a {
      margin-bottom: 10px;
      display: block;
    }

    That means any link in any element with class column will have that style.

    You should override that by adding somewhere:

    .column[data-col] a {
      margin-bottom: 0;
      display: inline;
    }
    

    Manuel ??

    Thread Starter Res Rickli

    (@res-rickli)

    GREAT! That works perfectly, thank you very much!
    Res ??

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Unwanted breaks before and after links’ is closed to new replies.