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
- Only get_posts of certain post formats
- Why do templates contain so many PHP tag pairs?
- Is there a way to parse shortcodes in PHP?
- Displaying a WooCommerce product via PHP
- What exactly does “Posts page” do in WordPress?
- Check if a menu is empty?
- Static Frontpage Pagination – Custom loop
- Get the php template file from other theme folder
- 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)
- On this day PHP code
- How to loop over custom fields in a page template?
- 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
- Use Timber/Twig to pull an image by image ID [closed]
- Categories Template Assistance
- Is it possible to use the featured image of a page as a css background without inlining?
- Unable to set right time in admin and frontend template
- Easiest way to show total number of subpages
- Switching between custom templates in a post type of the admin menu
- Use template for posts with a particular category grandparent
- Archive dropdown styling not applied
- Blank space at beginning of tag?
- Use is_product_category() properly
- Placing the_content inside shortcode not working
- Link to file in plugin directory from wordpress template?
- Password protecting content in custom template
- How to override wp-admin styling
- Add a Second Menu to a theme that only support 1 menu
- Custom excerpt function re-factoring
- Inject PHP code into “sidebar-content” – code before my WooCommerce sidebar widget?
- How to display user nickname (not display name) in PHP template?
- Custom Template 404 for specific custom post type
- An unwanted inline style is added to my body tag
- How to properly insert a link to a template in WordPress?
- Custom field value not saving when it contains a URL?
- Automatically add custom CSS to new posts using a category template
- How to query for pages/post depending on slug?
- Render ninja form inside markup
- Global variable $post returning incorrect object
- 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
- creating a second image attachment template?
- Mass update excerpt
- What is an equivalent of single_cat_title for getting the slug of the category?
- How can I get a single php file that is the equivalent of an existing WordPress page?
- Get and insert order email address to the PHP template inside HTML text
- Custom search results page not working with empty search
- I have a problem in the order of enqueues while enqueuing stylesheets and scripts for a specific page in my function.php
- missing admin bar and widget in a template
- How to include a function in a template with template tag
- Customizing the output of the archive and category widget without altering the original behavior of the widget
- What syntax is this? “{{post.price}}”
- How to add custom text near category/tag title in WordPress Twenty Fifteen Theme?
- My own theme’s custom widget areas are not working
- Display tag links on archive page?
- How do I modify the Previous and Next Page posts on blog pages to include “previous” and “next” before the links?
- 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
- Archive page if else not working for post_excerpt and post_content
- Create dynamic content from one WP page to multiple other pages
- How to call a certain object/menubar in a PHP file
- 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?
- how to register a second page-template
- dynamically filter by category via sub-menu
- why is markup routinely placed in functions in wordpress?
- 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]
- WordPress categories not working throughout site
- archive per year with monthly
- Custom archives page by month and year – nesting problem
- Loop on a wordpress Page instead of content coming from the WP text editor
- 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 can one use variables in a template or template part without polluting the global scope?
- Need Help With Making Full-Width Template for Blog Posts (common methods aren’t working)
- How to edit templates created in the block editor in code / template files not updating
- WordPress post-template null warnings
- AJAX Appending Data Adds Mystery “0” :(