Problem with blog layout
On the first page of articles the layout is differnt then the others. page 2 and 3 and so on is correct, but on the first one it isnt. I want the first page to look like the other pages. What have I done wrong?
tnx

    grafiska-huset Hi

    The problem came from the article: 3 ÖKL med VP för Remkilens W-Nikki in which you add the readmore button inside a div tag:

    <div class="com-content-article__body">
    <p>...</p>
    
    <hr id="system-readmore">
    
    <p>...</p>
    </div>

    I just changed it to:

    <div class="com-content-article__body">
    <p>...</p>
    </div>
    <hr id="system-readmore">
    <div>
    <p>...</p>
    </div>

    it's ok now.

    4 days later
    Write a Reply...
    You need to Login to view replies.