sandyc
Forum Replies Created
-
Forum: Themes and Templates
In reply to: Default Page Layout changedHow can I get my site to appear in one browser as it appears in others? The sidebar is supposed to be on the left. When I look at the site in IE, the sidebar is at the bottom. When I look at the site in Mozilla Firefox, it’s on the left as it should be. Please help me with this. I understand there are errors, but these errors did not result from any changes that I made to the source code. The site is http://www.namsparties4kids.com.
Forum: Themes and Templates
In reply to: Default Page Layout changed@wpyogi – What file do I edit so that my site appears in IE as it should?
Forum: Themes and Templates
In reply to: Default Page Layout changed@wpyogi – I looked at my site in Mozilla, and it does appear as it should with the buttons in the left sidebar, and the content on the right. What file do I edit to make the corrections so that IE displays the site as it should?
Forum: Themes and Templates
In reply to: Default Page Layout changedMy browser is IE. I have checked and double-checked my theme options. I have gone over my page layouts. All of those are in order. What am I missing?
Forum: Themes and Templates
In reply to: Default Page Layout changedThis is really strange. I deleted the caches of each page, but the widget is flushed left, but it then covers the full page. Is there something else?
Forum: Fixing WordPress
In reply to: Removing hard coded widgetsThank you. It worked. This is a learning curve.
Forum: Fixing WordPress
In reply to: Removing hard coded widgetsI have deactivated all of the widgets in my site, namsparties4kids.com, but the archive widget remains. I do not want any widget to show. I tried adding a blank text widget, but that only served to display a visible empty box on the page. The theme is responsive. As I said, I am learning.
Forum: Fixing WordPress
In reply to: Removing hard coded widgetsThis is the HTML code:
<?php responsive_widgets_before(); // above widgets container hook ?> <div id="widgets" class="<?php echo implode( ' ', responsive_get_sidebar_classes() ); ?>"> <?php responsive_widgets(); // above widgets hook ?> <?php if (!dynamic_sidebar('main-sidebar')) : ?> <div class="widget-wrapper"> <div class="widget-title"><?php _e('In Archive', 'responsive'); ?></div> <ul> <?php wp_get_archives( array( 'type' => 'monthly' ) ); ?> </ul> </div><!-- end of .widget-wrapper --> <?php endif; //end of main-sidebar ?> <?php responsive_widgets_end(); // after widgets hook ?> </div><!-- end of #widgets --> <?php responsive_widgets_after(); // after widgets container hook ?>I understand a little HTML, but this is too complex.