Viewing 1 replies (of 1 total)
  • Hi dzulfriday,

    1. The grid layout might be done by a grid with this layout:
    AAAABBCC
    AAAABBCC
    AAAADDEE
    AAAADDEE
    I noticed that sometimes it is better to use “bigger areas” and not the “quick” solution
    AABC
    AADE

    2. Using the h1 and h2 HTML headline means, that the formatting will be the same as in your theme. To change the formatting if these just in the tiles you either (a) need to add css rules to your theme (create a child theme first, then very likely there is a file style.css – this is where you put your styling) for .wp-tiles-grid h1 and .wp-tiles-grid h2. This could look like this:

    .wp-tiles-grid h1 {
          color:white;
          font-size:28px;
    }

    or (b) you put the style definition in the byline definition of WP-Tiles. Then your screenshot https://prnt.sc/b5rlv9 would change to:

    <h2 style="color:white;">%categories%</h2><br>
    <h1 style="color:white;font-size:28px;">%title%</h2><br>
    %excerpt%

Viewing 1 replies (of 1 total)
  • The topic ‘Confuse with the byline usage’ is closed to new replies.