Without knowing the structure, class names, ids etc. it would be impossible to give you an answer that would help.
But lets say that the structure is ul>li*6
<ul>
<li>...</li>
<li>...</li>
<li>...</li>
<li>...</li>
<li>...</li>
<li>...</li>
</ul>
The must basic of css that would create such a design would be
ul {
display: grid;
grid-template-columns: repeat(3, minmax(0, 1fr));
grid-gap: 20px 50px;
}
You would need to adjust the gap im sure, but this is a good starting point
EDIT
Ok so following your answer with the image the css target would be .page-content, but that could target other elements with the same class.
Try looking for a parent with a unique class or id that you can use to make sure your css only target that specific element
Related Posts:
- Custom Archive Page
- To close or not to close php
- How does printf( __( ) ); work?
- Return HTML Template Page with PHP Function
- Why do templates contain so many PHP tag pairs?
- Displaying a WooCommerce product via PHP
- What exactly does “Posts page” do in WordPress?
- Check if a menu is empty?
- WordPress Template Engine?
- How to have a custom display for both woocommerce archive and product-category pages? [closed]
- wp_remote_get returns an error for valid URL
- Archive listing of posts by publish year (multiple years)
- Blank on static home page?
- WordPress theme & site not loading after moving files
- Adjust the results quantity for Search Results page pagination
- Exclude pages with certain template from wp_list_pages
- Categories Template Assistance
- Is it possible to use the featured image of a page as a css background without inlining?
- Switching between custom templates in a post type of the admin menu
- Use template for posts with a particular category grandparent
- Use is_product_category() properly
- Placing the_content inside shortcode not working
- Password protecting content in custom template
- How to override wp-admin styling
- An unwanted inline style is added to my body tag
- Automatically add custom CSS to new posts using a category template
- How can I load a PHP page without using a Template?
- how could I load a different template part by page
- Show full posts in archive
- Getting the author name on author archive page
- What is an equivalent of single_cat_title for getting the slug of the category?
- Get and insert order email address to the PHP template inside HTML text
- code is skipping a div
- Woocommerce Show Single Product on Homepage
- Is the “_s” on this `sprintf(__(‘Page %s’, ‘_s’), max($paged, $page))` just refer to a text domain?
- Show a different code on front page to other pages
- Does wordpress templates always in files or in database?
- PHP include is only working in certain places in my custom WP theme
- Adding wrapper elements in the_date() like in the_title()?
- How to get all author posts outside of author templates
- WordPress template page name displayed on screen
- Is there a way to hook or call a custom woocomerce template that is not part of the default templates of woocommerce?
- How to call multiple functions from multiple files into a WordPress page template [closed]
- How do I define a lookup table that will work across all PHP elements of the template?
- persist a variable set in header.php all the way down to footer.php
- Why does the Woocommerce grouped template prints the unpublished products?
- Adding conditional text to a PHP Shortcode Template
- Advice on creating a WP Archive Template with Custom Taxonomy (get_term_meta)
- add_filter function concatenate string and locate_template function
- How to render a block from php template
- Override Admin menu icon
- How to suppress template-parts in undescores?
- Need help with pagination
- How can I get “Previous” and “Next” to show in the navigation besides the links?
- Creating custom page template from existing PHP site
- How do I query a single data value from the wp_metadata table?
- Conditional string comparison failing for basename/slug
- Splitting the_content() by size?
- How to add new CSS file to new PHP file
- Some problems calling a function into sprintf() inside functions.php template file [closed]
- Blog suddenly shows Archive instead of index page
- Woocommerce. Get a list of products in the current category on the archive page and product page
- Loading Elementor templates in a Bootstrap modal on button clicking
- Integrate admin plugin into template. Very interesant (live search + autocomplete with wp rest api, in vanilla js)
- Display articles with a different template in the home page | Solved |
- What are the advantages/disadvantages of ways to use php template files?
- Change the “Show All” button in a WordPress Portfolio Filter
- Check if current post in loop is last on current page
- Exclude category from function – PHP
- Converting Array to String Issue [closed]
- Link to index.php from home.php?
- ACF – Custom image for Product Tags not displaying
- Roots Sage Symfony error when using override from template
- Permalink like example.com/taxonomy/post_type/postname
- How to display last whole post on the homepage
- How to tell if a page has subpages for Custom Post Types
- Customizing the output of the archive and category widget without altering the original behavior of the widget
- What syntax is this? “{{post.price}}”
- Add point on excerpt post
- WooCommerce – Print Processing orders [closed]
- Loop returns more items than exist?
- Access methods in plugin template
- Weird slug in archives permalink
- Create dynamic content from one WP page to multiple other pages
- Page 2+ of taxonomy archives does not recognise sort-order from dropdown
- Problems With Query and/or Template Part and/or PHP
- why is this content-template not showing any of my blog-entries?
- dynamically filter by category via sub-menu
- PHP code rendered in HTML
- Odd page behaviour after removing sidebar
- get_permalink returning first letter
- If I define a variable in header.php, how do I make it available to templates?
- How to refresh a template page on WordPress in 3 seconds – easiest method?
- Hide empty categories from get_categories
- php “use” not working in template [closed]
- archive per year with monthly
- Twig+WordPress how to use array arguments inside a function?
- How to implement a custom sliding banner? [closed]
- Adding commas between post titles on an archive page?
- How to edit templates created in the block editor in code / template files not updating