• Resolved Res Rickli

    (@res-rickli)


    I encountered a serious incompatibility between Travelify and the very useful page grid composer “Pixgridder” (https://www.ads-software.com/plugins/pixgridder/). Before and after every link an unwanted line break is inserted, which makes the text pretty unreadable.
    Text example: ... ihr Name war <a title="sample link" href="https://www.google.de/" target="_blank">Lorem Ipsum</a>, hinaus zu gehen...
    See the resulting live example: https://www.maerchenstund.ch/tstwp/de/res-testwp/
    (the line breaks before and after “Lore ipsum” are unwanted). Other themes do not show this problem, ihe link is inline as expected.
    Is there a solution or a workaround?

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

Viewing 1 replies (of 1 total)
  • Thread Starter Res Rickli

    (@res-rickli)

    The problem is resolved already; I received the answer from the author of Pixgridder within 1 hour!:

    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;
    }

    Appending this to style.css resolves the problem.

Viewing 1 replies (of 1 total)
  • The topic ‘Incompatibility between Travelify and plugin Pixgridder’ is closed to new replies.