• <?php wowslider(7); ?>(image slider) and
    <?php wp_nav_menu( array( 'theme_location' => 'primary' ) ); ?> (main menu)
    i want result on one line

Viewing 8 replies - 1 through 8 (of 8 total)
  • Andrew Nevins

    (@anevins)

    WCLDN 2018 Contributor | Volunteer support

    <?php
     wowslider(7); wp_nav_menu( array( 'theme_location' => 'primary' ) );
    ?>

    Is this what you’re looking for?
    Can you explain further your intent?

    Thread Starter lasha200

    (@lasha200)

    your code do not working 🙁
    i want to the one line first slider and then menu
    http://www.rstudio.ge <-its my site

    Andrew Nevins

    (@anevins)

    WCLDN 2018 Contributor | Volunteer support

    You can achieve this with CSS.
    Are you using a Theme?

    Thread Starter lasha200

    (@lasha200)

    archive site?

    Do not edit the Twenty Eleven theme. It is the default WordPress theme and having access to an unedited version of the theme is vital when dealing with a range of site issues. First create a child theme for your changes.

    Thread Starter lasha200

    (@lasha200)

    esmi
    tnx but i have queshen, my code will working on child theme?

    Moderator Jan Dembowski

    (@jdembowski)

    Forum Moderator and Brute Squad

    Yes it will if you create the child theme correctly. See above link that Esmi provided.

    Thread Starter lasha200

    (@lasha200)

    i did this code:

    <table width="100%">
      <tr>
        <td><?php if ( function_exists( 'soliloquy_slider' ) ) soliloquy_slider( '65' ); ?></td>
        <td><?php wp_nav_menu( array( 'theme_location' => 'primary' ) ); ?></td>
      </tr>
    </table>

    slider and menu is on one line but i cant corect menus position.
    i wrote `valign=”top” but not working.
    any ideas?

    [ Please do not bump, that’s not permitted here. ]

Viewing 8 replies - 1 through 8 (of 8 total)
  • The topic ‘how paste two code result to one line?’ is closed to new replies.