Title: TouchCoding.net - Øyvind Sæther's Replies - page 7 | WordPress.org

---

# TouchCoding.net - Øyvind Sæther

  [  ](https://wordpress.org/support/users/touchcoding/)

 *   [Profile](https://wordpress.org/support/users/touchcoding/)
 *   [Topics Started](https://wordpress.org/support/users/touchcoding/topics/)
 *   [Replies Created](https://wordpress.org/support/users/touchcoding/replies/)
 *   [Reviews Written](https://wordpress.org/support/users/touchcoding/reviews/)
 *   [Topics Replied To](https://wordpress.org/support/users/touchcoding/replied-to/)
 *   [Engagements](https://wordpress.org/support/users/touchcoding/engagements/)
 *   [Favorites](https://wordpress.org/support/users/touchcoding/favorites/)

 Search replies:

## Forum Replies Created

Viewing 15 replies - 91 through 105 (of 186 total)

[←](https://wordpress.org/support/users/touchcoding/replies/page/6/?output_format=md)
[1](https://wordpress.org/support/users/touchcoding/replies/?output_format=md) [2](https://wordpress.org/support/users/touchcoding/replies/page/2/?output_format=md)
[3](https://wordpress.org/support/users/touchcoding/replies/page/3/?output_format=md)…
[6](https://wordpress.org/support/users/touchcoding/replies/page/6/?output_format=md)
7 [8](https://wordpress.org/support/users/touchcoding/replies/page/8/?output_format=md)…
[11](https://wordpress.org/support/users/touchcoding/replies/page/11/?output_format=md)
[12](https://wordpress.org/support/users/touchcoding/replies/page/12/?output_format=md)
[13](https://wordpress.org/support/users/touchcoding/replies/page/13/?output_format=md)
[→](https://wordpress.org/support/users/touchcoding/replies/page/8/?output_format=md)

 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [[TopShop] Remove the Title Text in the Slider Images](https://wordpress.org/support/topic/remove-the-title-text-in-the-slider-images/)
 *  [TouchCoding.net – Øyvind Sæther](https://wordpress.org/support/users/touchcoding/)
 * (@touchcoding)
 * [10 years, 2 months ago](https://wordpress.org/support/topic/remove-the-title-text-in-the-slider-images/#post-7073993)
 * Hi Heatherfish! 🙂
    This should be easily done with css. How did you apply the
   css that did not work? Custom css plugin or child theme? And what code did you
   use?
 * This css worked for me:
 *     ```
       .home-slider div h3 {
       	display: none;
       }
       ```
   
 * This will remove the header3 on the slider. Anything else you wanted to remove?
 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [How to move menu and cart outside header](https://wordpress.org/support/topic/how-to-move-menu-and-cart-outside-header-1/)
 *  [TouchCoding.net – Øyvind Sæther](https://wordpress.org/support/users/touchcoding/)
 * (@touchcoding)
 * [10 years, 2 months ago](https://wordpress.org/support/topic/how-to-move-menu-and-cart-outside-header-1/#post-7068138)
 * You are using a child theme right? What else is in your functions.php? Have you
   modified something else?
 * I used the code on a test site running storefront and it worked for me.
 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [How to move menu and cart outside header](https://wordpress.org/support/topic/how-to-move-menu-and-cart-outside-header-1/)
 *  [TouchCoding.net – Øyvind Sæther](https://wordpress.org/support/users/touchcoding/)
 * (@touchcoding)
 * [10 years, 2 months ago](https://wordpress.org/support/topic/how-to-move-menu-and-cart-outside-header-1/#post-7068078)
 * Sorry this took so long… But here is the code:
 *     ```
       <?php
       if ( ! function_exists( 'storefront_header_cart' ) ) {
       	function storefront_header_cart() {
       		if ( is_woocommerce_activated() ) {
       			if ( is_cart() ) {
       				$class = 'current-menu-item';
       			} else {
       				$class = '';
       			}
       		?>
       		<ul class="site-header-cart menu">
       			<li class="<?php echo esc_attr( $class ); ?>">
       				<?php storefront_cart_link(); ?>
       			</li>
       			<li>
       				<?php the_widget( 'WC_Widget_Cart', 'title=' ); ?>
       			</li>
       		</ul>
       		<?php
       		}
       	}
       }
   
       if ( ! function_exists( 'storefront_primary_navigation' ) ) {
       	/**
       	 * Display Primary Navigation
       	 * @since  1.0.0
       	 * @return void
       	 */
       	function storefront_primary_navigation() {
       		?>
       		<nav id="site-navigation" class="main-navigation" role="navigation" aria-label="<?php esc_html_e( 'Primary Navigation', 'storefront' ); ?>">
       		<button class="menu-toggle" aria-controls="primary-navigation" aria-expanded="false"><?php echo esc_attr( apply_filters( 'storefront_menu_toggle_text', __( 'Navigation', 'storefront' ) ) ); ?></button>
       			<?php
       			wp_nav_menu(
       				array(
       					'theme_location'	=> 'primary',
       					'container_class'	=> 'primary-navigation',
       					)
       			);
   
       			wp_nav_menu(
       				array(
       					'theme_location'	=> 'handheld',
       					'container_class'	=> 'handheld-navigation',
       					)
       			);
       			?>
       		</nav><!-- #site-navigation -->
       		<?php
       	}
       }
   
       function child_remove_parent_function() {
           remove_action( 'storefront_header', 'storefront_primary_navigation', 50);
           remove_action( 'storefront_header', 'storefront_header_cart', 60);
       }
       add_action( 'wp_loaded', 'child_remove_parent_function' );
   
       function child_theme_init() {
       	add_action( 'storefront_before_content', 'woa_primary_nav_wrap', 5 );
       	add_action( 'woa_primary_nav', 'storefront_primary_navigation', 5 );
       	add_action( 'woa_primary_nav', 'storefront_header_cart', 10 );
       }
       add_action( 'init', 'child_theme_init' );
   
       function woa_primary_nav_wrap() {
       	?>
       		<div class="col-full primary-nav-wrap">
       			<?php do_action( 'woa_primary_nav' ); ?>
       		</div>
       	<?php
       }
       ```
   
 * Copy that into your functions.php in your child theme and I think that should
   do the trick 🙂 you can style the menu after this ofc.
 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [[onetone] Can't Center Table!](https://wordpress.org/support/topic/cant-center-table-1/)
 *  [TouchCoding.net – Øyvind Sæther](https://wordpress.org/support/users/touchcoding/)
 * (@touchcoding)
 * [10 years, 2 months ago](https://wordpress.org/support/topic/cant-center-table-1/#post-7064750)
 * No problem bnlauren! 🙂 Let me know if you need anything else
 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [How to move menu and cart outside header](https://wordpress.org/support/topic/how-to-move-menu-and-cart-outside-header-1/)
 *  [TouchCoding.net – Øyvind Sæther](https://wordpress.org/support/users/touchcoding/)
 * (@touchcoding)
 * [10 years, 2 months ago](https://wordpress.org/support/topic/how-to-move-menu-and-cart-outside-header-1/#post-7068065)
 * Can you link to your site please? or is it local? I might be able to use css 
   in order to move the navbar.
 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [[Fukasawa] Dropdown Menu](https://wordpress.org/support/topic/dropdown-menu-53/)
 *  [TouchCoding.net – Øyvind Sæther](https://wordpress.org/support/users/touchcoding/)
 * (@touchcoding)
 * [10 years, 2 months ago](https://wordpress.org/support/topic/dropdown-menu-53/#post-7068064)
 * Oh sorry… haven’t used Fukasawa before, so I didn’t know that, but you can use
   some simple css to create a dropdown menu.
 * Try this:
 *     ```
       .menu-item {
           position: relative;
           display: inline-block;
       }
   
       .sub-menu {
           display: none;
           position: absolute;
           background-color: #f9f9f9;
           min-width: 160px;
           box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
           padding: 12px 16px;
           z-index: 1;
   
       }
   
       .menu-item:hover .sub-menu {
           display: block;
       }
       ```
   
 * Try that and let me know if that was what you were after.
 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [[Fukasawa] Dropdown Menu](https://wordpress.org/support/topic/dropdown-menu-53/)
 *  [TouchCoding.net – Øyvind Sæther](https://wordpress.org/support/users/touchcoding/)
 * (@touchcoding)
 * [10 years, 2 months ago](https://wordpress.org/support/topic/dropdown-menu-53/#post-7067991)
 * Hi there Altlabart!
    You can easily do this be dragging the menu item around 
   within the “menu structure” under Appearance>menus
 * here is an example: [http://postimg.org/image/jyw7c04k3/](http://postimg.org/image/jyw7c04k3/)
 * I used countries as the main menu item and then all the countries as sub menu
   items.
 * Hope this helped you out. 🙂
 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [How to move menu and cart outside header](https://wordpress.org/support/topic/how-to-move-menu-and-cart-outside-header-1/)
 *  [TouchCoding.net – Øyvind Sæther](https://wordpress.org/support/users/touchcoding/)
 * (@touchcoding)
 * [10 years, 2 months ago](https://wordpress.org/support/topic/how-to-move-menu-and-cart-outside-header-1/#post-7067987)
 * Hi there Padodalu!
    I don’t understand why you want that. The header is usually
   where the nav is located. If you don’t look the background image of the header
   that can be removed. Please reply with some more explanation of what you want
   to achieve.
 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [[onetone] Can't Center Table!](https://wordpress.org/support/topic/cant-center-table-1/)
 *  [TouchCoding.net – Øyvind Sæther](https://wordpress.org/support/users/touchcoding/)
 * (@touchcoding)
 * [10 years, 2 months ago](https://wordpress.org/support/topic/cant-center-table-1/#post-7064671)
 * How did you apply the css? Are you sure you applied it correctly? Try changing
   the background color to red or something like that, just to see if your css sticks
   to your site.
 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [removing these ugly bars in twenty-sixteen](https://wordpress.org/support/topic/removing-these-ugly-bars-in-twenty-sixteen/)
 *  [TouchCoding.net – Øyvind Sæther](https://wordpress.org/support/users/touchcoding/)
 * (@touchcoding)
 * [10 years, 2 months ago](https://wordpress.org/support/topic/removing-these-ugly-bars-in-twenty-sixteen/#post-7064590)
 * Hi there rustinpeace91! 🙂
    The bar you are talking about is this css right here:
 *     ```
       border-top: 4px solid #1a1a1a;
       ```
   
 * You can easily remove this in your css file or you could write this code:
 *     ```
       border-top: none;
       ```
   
 * For example if you wanted to remove the bar over the widget section in your sidebar
   use this code:
 *     ```
       .widget {
           border-top: none;
       }
       ```
   
 * Hope this helps you out! 🙂
 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [[onetone] Can't Center Table!](https://wordpress.org/support/topic/cant-center-table-1/)
 *  [TouchCoding.net – Øyvind Sæther](https://wordpress.org/support/users/touchcoding/)
 * (@touchcoding)
 * [10 years, 2 months ago](https://wordpress.org/support/topic/cant-center-table-1/#post-7064580)
 * Hi there bnLauren! 🙂
 * Your problem can be solved with some simple css. You need to define a width for
   the panel-grid based on the user’s screen size and then set the margin left and
   right to auto.
 * Try this css:
 *     ```
       @media only screen and (min-width: 1200px){
           #pg-4-1, #pg-4-2 {
           width: 1170px;
       }
       }
   
       @media only screen and (min-width: 992){
           #pg-4-1, #pg-4-2 {
           width: 970px;
       }
       }
   
       @media (min-width: 768px)
       #pg-4-1, #pg-4-2 {
           width: 750px;
       }
       @media only screen and (min-width: 768px){
           #pg-4-1, #pg-4-2 {
           width: 750px;
       }
       }
       #pg-4-1, #pg-4-2 {
           margin-right: auto;
           margin-left: auto;
       }
       ```
   
 * Hope this helps you out 😀
 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [[Sparkling] change color 3 bars of the responsive menu](https://wordpress.org/support/topic/change-color-3-bars-of-the-responsive-menu/)
 *  [TouchCoding.net – Øyvind Sæther](https://wordpress.org/support/users/touchcoding/)
 * (@touchcoding)
 * [10 years, 6 months ago](https://wordpress.org/support/topic/change-color-3-bars-of-the-responsive-menu/#post-6733888)
 * weird… When I apply that css the three bars changes color. Are you sure you targeted
   the .icon-bar, like I did. It should work.
 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [[Sparkling] change color 3 bars of the responsive menu](https://wordpress.org/support/topic/change-color-3-bars-of-the-responsive-menu/)
 *  [TouchCoding.net – Øyvind Sæther](https://wordpress.org/support/users/touchcoding/)
 * (@touchcoding)
 * [10 years, 6 months ago](https://wordpress.org/support/topic/change-color-3-bars-of-the-responsive-menu/#post-6733879)
 * look though your custom css code and look at what you changed. I can’t really
   help you with that since it’s locally. If you can’t figure it out, try to delete
   your child theme and create a new one. If that doesn’t work either reinstalling
   your theme would be the next thing you could try 🙂
 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [[Twenty Twelve] Dequeue child style.css](https://wordpress.org/support/topic/dequeue-child-stylecss/)
 *  [TouchCoding.net – Øyvind Sæther](https://wordpress.org/support/users/touchcoding/)
 * (@touchcoding)
 * [10 years, 6 months ago](https://wordpress.org/support/topic/dequeue-child-stylecss/#post-6733864)
 * Hi Superpoincare!
    This article from the WordPress Codex might help you out: 
   [https://codex.wordpress.org/Function_Reference/wp_dequeue_style](https://codex.wordpress.org/Function_Reference/wp_dequeue_style)
 * It describes how to dequeue any stylesheet. Hope that helps 🙂
 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [[Intergalactic] Add favicon in Intergalactic theme](https://wordpress.org/support/topic/add-favicon-in-intergalactic-theme/)
 *  [TouchCoding.net – Øyvind Sæther](https://wordpress.org/support/users/touchcoding/)
 * (@touchcoding)
 * [10 years, 6 months ago](https://wordpress.org/support/topic/add-favicon-in-intergalactic-theme/#post-6733857)
 * Hi Woil-16!
    Here is a link to the WordPress Codex covering this topic: [https://codex.wordpress.org/Creating_a_Favicon](https://codex.wordpress.org/Creating_a_Favicon)
   This guide should make it easy to add a custom favicon, but if you need more 
   help, please contact me again 🙂

Viewing 15 replies - 91 through 105 (of 186 total)

[←](https://wordpress.org/support/users/touchcoding/replies/page/6/?output_format=md)
[1](https://wordpress.org/support/users/touchcoding/replies/?output_format=md) [2](https://wordpress.org/support/users/touchcoding/replies/page/2/?output_format=md)
[3](https://wordpress.org/support/users/touchcoding/replies/page/3/?output_format=md)…
[6](https://wordpress.org/support/users/touchcoding/replies/page/6/?output_format=md)
7 [8](https://wordpress.org/support/users/touchcoding/replies/page/8/?output_format=md)…
[11](https://wordpress.org/support/users/touchcoding/replies/page/11/?output_format=md)
[12](https://wordpress.org/support/users/touchcoding/replies/page/12/?output_format=md)
[13](https://wordpress.org/support/users/touchcoding/replies/page/13/?output_format=md)
[→](https://wordpress.org/support/users/touchcoding/replies/page/8/?output_format=md)