Advertisement:

Author Topic: Internet explorer compatibility with rumbiak theme.  (Read 2084 times)

greenrecycled

  • Newbie
  • *
  • Posts: 4
Internet explorer compatibility with rumbiak theme.
« on: October 14, 2013, 02:12:11 am »
I have osclass installed with rumbiak theme, it appears not to be compatible with explorer, no carousel working and no buttons responding also display issues, I also have a modified plugin ie_browser_detect is there anyway to enable use of minimalist theme automatically if explorer is detected and rumbiak if not rather than having two installs?
Website is www.bargainfreeads.co.uk

_CONEJO

  • Administrator
  • Hero Member
  • *****
  • Posts: 4689
Re: Internet explorer compatibility with rumbiak theme.
« Reply #1 on: October 14, 2013, 11:13:05 am »
Rumbiak is not an official theme, please contact the author for support and doubts

markrday

  • Newbie
  • *
  • Posts: 3
Re: Internet explorer compatibility with rumbiak theme.
« Reply #2 on: December 30, 2013, 04:30:31 am »
Hello can you tell me did you overcome the problems with this theme

Mine works ok apart from search results not showing and show all offers bringing back a empty page.

do you have friendly urls selected

Im running Osclass 3.3.2

 :P

frosticek

  • Hero Member
  • *****
  • Posts: 3948
Re: Internet explorer compatibility with rumbiak theme.
« Reply #3 on: December 30, 2013, 11:12:17 am »
@markrday
This theme is created by @Silent Reader. His name was other but he changed it.
Not online for last 8 days, suppose you will get no support for his product.
If yes, it will take some time.

tomshaft

  • Hero Member
  • *****
  • Posts: 862
  • Osshaft for Osclass - Add 650 posts to my total
Re: Internet explorer compatibility with rumbiak theme.
« Reply #4 on: December 30, 2013, 12:03:08 pm »
@markrday
This theme is created by @Silent Reader. His name was other but he changed it.
Not online for last 8 days, suppose you will get no support for his product.
If yes, it will take some time.

Just curious because I never heard of this theme.
Who "was" the author and where is this theme. I did a search and this was the only real result?
 
Tom

markrday

  • Newbie
  • *
  • Posts: 3
Re: Internet explorer compatibility with rumbiak theme.
« Reply #5 on: December 30, 2013, 04:08:23 pm »
i did manage to get round my issues by making a clean install .

i will see if greenrecycled issues are still there on ie and report back as its a good theme to work from

 :P

markrday

  • Newbie
  • *
  • Posts: 3
Re: Internet explorer compatibility with rumbiak theme.
« Reply #6 on: December 30, 2013, 07:42:33 pm »
Ok guys sorted out the IE issues

Put a width:270px; in .logo and .desc in the css file

Then in the header.php you will see

<section id="header-left">

<?php
      $picture = logo_header();
      if( preg_match("/\b(?:(?:https?|ftp):\/\/|www\.)[-a-z0-9+&@#\/%?=~_|!:,.;]*[-a-z0-9+&@#\/%=~_|]/i", $picture) ) { ?>
       <a id="logo" href="<?php echo osc_base_url(); ?>"><?php echo logo_header(); ?></a>
<?php } else { ?>
       <div class="desc"><?php echo osc_page_description(); ?></div> <div class="logo"><a href="<?php echo osc_base_url(); ?>" title="<?php echo osc_page_title(); ?>"><?php echo osc_page_title(); ?></a></div>
<?php } ?>
</section>


change to



<div id="header-left">

<?php
      $picture = logo_header();
      if( preg_match("/\b(?:(?:https?|ftp):\/\/|www\.)[-a-z0-9+&@#\/%?=~_|!:,.;]*[-a-z0-9+&@#\/%=~_|]/i", $picture) ) { ?>
       <a id="logo" href="<?php echo osc_base_url(); ?>"><?php echo logo_header(); ?></a>
<?php } else { ?>
       <div class="desc"><?php echo osc_page_description(); ?></div> <div class="logo"><a href="<?php echo osc_base_url(); ?>" title="<?php echo osc_page_title(); ?>"><?php echo osc_page_title(); ?></a></div>
<?php } ?>
</div>


hope this helps

mark