• I want to show 3 or 4 posts per row in my WordPress website instead of 2. If I need CSS code please let me know. My website is hydragames.us

    The page I need help with: [log in to see the link]

Viewing 5 replies - 1 through 5 (of 5 total)
  • That looks like it’s a setting somewhere in your theme, or your pages layout.

    As your using a commercial theme, you should ask the author/vendor of that theme for support with this as commercial themes are not supported in these forums.

    Thread Starter adamjonx

    (@adamjonx)

    I using it for free and there is no support. Please let me know if I can use a CSS code

    No one here has access to the code for that theme, so we can’t see anything to do with it, or it’s settings or set up.

    And you say that you “used it for free”… How exactly? It’s a commercial theme that you need to purchase, so in order to use it on your site you need to have purchased a license for it.

    Hi @adamjonx ,

    You can adjust the number of posts per row by modifying the CSS classes. Currently, your posts are using the class:

    <div class="col-md-6" style="position: absolute; left: 0px; top: 0px;">

    To display 3 or 4 posts per row, change the class from col-md-6 (which shows 2 per row) to col-md-4 (for 3 per row) or col-md-3 (for 4 per row). Here’s an example:

    • For 3 posts per row:
      <div class="col-md-4" style="position: absolute; left: 0px; top: 0px;">
    • For 4 posts per row:
      <div class="col-md-3" style="position: absolute; left: 0px; top: 0px;">

    This change will adjust the layout based on your requirement.

    Thread Starter adamjonx

    (@adamjonx)

    Hello I can’t find the class=”col-md-6″ in my style.css please access my file and edit it to make 4 posts per row

    https://drive.google.com/file/d/1-3F9AekMz_ao2EAct9XiWFyuWi8Txadc/view?usp=drivesdk

Viewing 5 replies - 1 through 5 (of 5 total)
  • You must be logged in to reply to this topic.