*

Moderat

  • *
  • 4 posts
Menu Manager Plugin CSS
« on: January 19, 2018, 02:06:36 PM »
I just bought the Menu Manager Plugin and if i ad it to the header is coming in just plain text no design

This is the Top Menu code that needs to be added on header file

Code: [Select]
<?php echo show_menu('1'?>

This is the Footer Menu that will be added on footer file

Code: [Select]
<?php echo show_menu('2'?>
The plugin dose accept custom css so can you please help me out with a custom css button that can be Red like the publish button



*

MB Themes

Re: Menu Manager Plugin CSS
« Reply #1 on: January 19, 2018, 02:13:52 PM »
@Moderat
I would say you should ask plugin author how to properly configure it
  To get fast support, we need following details: Detail description, URL to reproduce problem, Screenshots

*

Moderat

  • *
  • 4 posts
Re: Menu Manager Plugin CSS
« Reply #2 on: January 19, 2018, 02:55:25 PM »
Can you give me a code so i can insert nicely in that position as if i add the code it goes bad and the format of  the header it goes wrong

Code: [Select]
  <div class="left-block">
      <div class="logo not767">
        <a class="resp-logo" href="<?php echo osc_base_url(); ?>"><?php echo logo_header(); ?></a>
      </div>

      <?php if(osc_is_ad_page()) { ?>
        <a id="history-back" class="is767" href="<?php echo osc_search_url(veronika_search_params()); ?>"><i class="fa fa-angle-left"></i><span><?php _e('Search''veronika'); ?></span></a>
      <?php } else if(osc_is_home_page()) { ?>
        <a class="logo-text is767" href="<?php echo osc_base_url(); ?>"><span><?php echo osc_get_preference('logo_text''veronika_theme'); ?></span></a>
      <?php } else { ?>
        <a id="history-back" class="is767" href="<?php echo osc_base_url(); ?>"><i class="fa fa-angle-left"></i><span><?php _e('Home''veronika'); ?></span></a>
      <?php ?>

      <div class="language not767">
        <?php if ( osc_count_web_enabled_locales() > 1) { ?>
          <?php $current_locale mb_get_current_user_locale(); ?>

          <?php osc_goto_first_locale(); ?>
          <span id="lang-open-box">
            <div class="mb-tool-cover">
              <span id="lang_open" class="round3<?php if( osc_is_web_user_logged_in() ) { ?> logged<?php ?>">
                <span>
                  <span class="non-resp"><?php echo $current_locale['s_short_name']; ?></span>
                  <span class="resp"><?php echo strtoupper(substr($current_locale['pk_c_code'], 02)); ?></span>

                  <i class="fa fa-angle-down"></i></span>
              </span>

              <div id="lang-wrap" class="mb-tool-wrap">
                <div class="mb-tool-cover">
                  <ul id="lang-box">
                    <span class="info"><?php _e('Select language''veronika'); ?></span>

                    <?php $i ;  ?>
                    <?php while ( osc_has_web_enabled_locales() ) { ?>
                      <li <?php if( $i == ) { echo "class='first'" ; } ?> title="<?php echo osc_esc_html(osc_locale_field("s_description")); ?>"><a id="<?php echo osc_locale_code() ; ?>" href="<?php echo osc_change_language_url osc_locale_code() ) ; ?>"><img src="<?php echo osc_current_web_theme_url();?>images/country_flags/<?php echo strtolower(substr(osc_locale_code(), 3)); ?>.png" alt="<?php _e('Country flag''veronika');?>" /><span><?php echo osc_locale_name(); ?></span></a><?php if (osc_locale_code() == $current_locale['pk_c_code']) { ?><i class="fa fa-check"></i><?php ?></li>
                      <?php $i++ ; ?>
                    <?php ?>
                  </ul>
                </div>
              </div>
            </div>
          </span>
        <?php ?>
      </div>



      <?php if(!osc_is_home_page() && !osc_is_search_page()) { ?>
        <div id="top-search" class="non-resp">
          <a href="<?php echo osc_search_url(veronika_search_params()); ?>" class="btn"><i class="fa fa-search"></i><span><?php _e('Search''veronika'); ?></span></a>
        </div>
      <?php ?>
    </div>

<?php echo show_menu('1'

    <
div class="right-block not767">


      <?
php if(osc_is_web_user_logged_in()) { ?>

        <a class="logout round3 tr1" href="<?php echo osc_user_logout_url(); ?>"><i class="fa fa-sign-out"></i></a>
      <?php ?>

      <a class="publish round3 tr1" href="<?php echo osc_item_post_url(); ?>">
        <span class="non-resp"><?php _e('Publish listing''veronika'); ?></span>
        <span class="resp"><?php _e('Add''veronika'); ?></span>
      </a>



Many Thanks,
Tony