Forum Replies Created

Viewing 8 replies - 1 through 8 (of 8 total)
  • Thread Starter cfb

    (@cfb)

    Hey Emil! it’s FINALLY fixed but it’s so embarassing at the same time :S!! it was all about the cookies (I kept reloading the page but I forgot about erasing the damn cookies!) that’s why I couldn’t be able to see it well in IE9, sorry for all this mess but I usually work with firefox and/or chrome and I never had these issues with the cookies.

    Now I’ll register on your forums with a non-hotmail.com e-mail ’cause I have a couple more issues I need to solve. I’m such a noob! Thank you very much for your time and patience!

    Thread Starter cfb

    (@cfb)

    ok, here’s what i’ve done, I don’t remember writing any styles into Media Queries but just in case i downloaded the newest child theme example from your link, copied the css and replaced it from the old Media Queries I had. Then, erased the lines of text-align:center; that appeared inside #logo, and now looks like this:

    ` #logo {
    float:none;
    }
    `

    BUT still doesn’t work in IE9 :S, what else might be?

    Thread Starter cfb

    (@cfb)

    Ok, so now I’ve erased that line and looks like this:

    #header #logo {
    	    float:none;
        }

    but still doesn’t work in IE9. Any ideas? :S

    PS: By the way, yesterday I tried to register on your ThemeID forums but i didn’t receive any mail with the password, my e-mail is: eduardsans@hotmail.com

    Thread Starter cfb

    (@cfb)

    I created a .php file for the footer with a couple of divs that contain links. Then I used the control panel of this template to create new pages in order to put the information of those links and when publishing them it also created -as usual- a link to the top menu. The question is: how do I hide those links on the top menu? I don’t need them on the top menu since I got them on the footer. Am I explaining myself? sorry for my english :S.

    this is what’s inside footer.php anyway, i don’t know if it may help (i have no clue on .php code so please be gentle, it might be messy lol):

    <?php
    
    // Exit if accessed directly
    if ( !defined('ABSPATH')) exit;
    
    /**
     * Footer Template
     *
     *
     * @file           footer.php
     * @package        Responsive
     * @author         Emil Uzelac
     * @copyright      2003 - 2012 ThemeID
     * @license        license.txt
     * @version        Release: 1.0
     * @filesource     wp-content/themes/responsive/footer.php
     * @link           http://codex.wordpress.org/Theme_Development#Footer_.28footer.php.29
     * @since          available since Release 1.0
     */
    ?>
        </div><!-- end of #wrapper -->
        <?php responsive_wrapper_end(); // after wrapper hook ?>
    </div><!-- end of #container -->
    <?php responsive_container_end(); // after container hook ?>
    
    <div id="footer" class="clearfix">
    
        <div id="footer-wrapper">
    
        <div class="grid col-940">
    
            <div class="grid col-620">
    		<?php if (has_nav_menu('footer-menu', 'responsive')) { ?>
    	        <?php wp_nav_menu(array(
    				    'container'       => '',
    					'fallback_cb'	  =>  false,
    					'menu_class'      => 'footer-menu',
    					'theme_location'  => 'footer-menu')
    					);
    				?>
             <?php } ?>
             </div><!-- end of col-620 -->
    
             <div class="grid col-300 fit">
             <?php $options = get_option('responsive_theme_options');
    
                // First let's check if any of this was set
    
                    echo '<ul class="social-icons">';
    
                    if (!empty($options['twitter_uid'])) echo '<li class="twitter-icon"><a href="' . $options['twitter_uid'] . '">'
                        .'<img src="' . get_stylesheet_directory_uri() . '/icons/twitter-icon.png" width="24" height="24" alt="Twitter">'
                        .'</a></li>';
    
                    if (!empty($options['facebook_uid'])) echo '<li class="facebook-icon"><a href="' . $options['facebook_uid'] . '">'
                        .'<img src="' . get_stylesheet_directory_uri() . '/icons/facebook-icon.png" width="24" height="24" alt="Facebook">'
                        .'</a></li>';
    
                    if (!empty($options['linkedin_uid'])) echo '<li class="linkedin-icon"><a href="' . $options['linkedin_uid'] . '">'
                        .'<img src="' . get_stylesheet_directory_uri() . '/icons/linkedin-icon.png" width="24" height="24" alt="LinkedIn">'
                        .'</a></li>';
    
                    if (!empty($options['youtube_uid'])) echo '<li class="youtube-icon"><a href="' . $options['youtube_uid'] . '">'
                        .'<img src="' . get_stylesheet_directory_uri() . '/icons/youtube-icon.png" width="24" height="24" alt="YouTube">'
                        .'</a></li>';
    
                    if (!empty($options['stumble_uid'])) echo '<li class="stumble-upon-icon"><a href="' . $options['stumble_uid'] . '">'
                        .'<img src="' . get_stylesheet_directory_uri() . '/icons/stumble-upon-icon.png" width="24" height="24" alt="StumbleUpon">'
                        .'</a></li>';
    
                    if (!empty($options['rss_uid'])) echo '<li class="rss-feed-icon"><a href="' . $options['rss_uid'] . '">'
                        .'<img src="' . get_stylesheet_directory_uri() . '/icons/rss-feed-icon.png" width="24" height="24" alt="RSS Feed">'
                        .'</a></li>';
    
                    if (!empty($options['google_plus_uid'])) echo '<li class="google-plus-icon"><a href="' . $options['google_plus_uid'] . '">'
                        .'<img src="' . get_stylesheet_directory_uri() . '/icons/googleplus-icon.png" width="24" height="24" alt="Google Plus">'
                        .'</a></li>';
    
                    if (!empty($options['instagram_uid'])) echo '<li class="instagram-icon"><a href="' . $options['instagram_uid'] . '">'
                        .'<img src="' . get_stylesheet_directory_uri() . '/icons/instagram-icon.png" width="24" height="24" alt="Instagram">'
                        .'</a></li>';
    
                    if (!empty($options['pinterest_uid'])) echo '<li class="pinterest-icon"><a href="' . $options['pinterest_uid'] . '">'
                        .'<img src="' . get_stylesheet_directory_uri() . '/icons/pinterest-icon.png" width="24" height="24" alt="Pinterest">'
                        .'</a></li>';
    
                    echo '</ul><!-- end of .social-icons -->';
             ?>
             </div><!-- end of col-300 fit -->
    
            <div class="grid col-300 copyright">
            </div><!-- end of .copyright -->
    
    <div class="grid col-300 copyright"></div>
    
            <div class="grid col-300 fit powered">
    
               <a href="<?php echo site_url( '/sitemap/' ); ?>" title="<?php esc_attr_e('Sitemap', 'shell'); ?>"> <?php printf('Sitemap'); ?>
    		</a>
    
    <? echo "  |  " ?>
    
    		<a href="<?php echo site_url( '/certificados-de-calidad/' ); ?>" title="<?php esc_attr_e('Certificados', 'shell'); ?>"> <?php printf('Certificados ISO'); ?>
    </a>
    
    <? echo "  |  " ?>
    
    		<a href="<?php echo site_url( '/aviso-legal/' ); ?>" title="<?php esc_attr_e('Aviso legal', 'shell'); ?>"> <?php printf('Aviso Legal'); ?></a>
    
    <? echo "  |  " ?>
    
    		<a href="<?php echo site_url( '/condiciones-de-uso/' ); ?>" title="<?php esc_attr_e('Condiciones de uso', 'shell'); ?>"> <?php printf('Condiciones de Uso'); ?></a>
    
    <? echo "  |  " ?>
    <?php printf('® OX Worldwide 2012'); ?>
            </div><!-- end .powered -->
    
        </div><!-- end of col-940 -->
        </div><!-- end #footer-wrapper -->
    
    </div><!-- end #footer -->
    
    <?php wp_footer(); ?>
    </body>
    </html>
    Thread Starter cfb

    (@cfb)

    sure man! whenever you like! I’d appreciate it a lot! thank you.

    Thread Starter cfb

    (@cfb)

    yeah sure, sorry, it was for IE9, in IE8 it is seen perfectly. here you go:

    http://subefotos.com/ver/?fa6a855b45adae7a0d8a6a49a7be5296o.jpg

    Thread Starter cfb

    (@cfb)

    Hi emil, before I close this thread, do you mind telling me how to fix the header part for IE8? please read my last comment above where I explain it. Thanx! :D!

    Thread Starter cfb

    (@cfb)

    Thanks to you for this impressive template! Thank you so much for your help, it finally seemed to work out BUT all of the sudden it seems like the header on IE has gone totally off-centered and I don’t even know where to begin to look at ’cause the only code I’ve used regarding this area is this:

    div#logo {
    	background-color: #CE9108;
    }

    Do you mind telling me what might be the cause and how to fix it? Also, there’s this text on the main widget of the homepage that also looks a little off-centered on IE, can you see it? is there anyway to fix this?

    Thank you again!

    PS: I just figured out that this ONLY happens on IE9, on IE8 it works perfectly. OMG I hate this browser sooo much!!

Viewing 8 replies - 1 through 8 (of 8 total)