Title: TouchCoding.net - Øyvind Sæther's Replies - page 6 | 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 - 76 through 90 (of 186 total)

[←](https://wordpress.org/support/users/touchcoding/replies/page/5/?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)…
[5](https://wordpress.org/support/users/touchcoding/replies/page/5/?output_format=md)
6 [7](https://wordpress.org/support/users/touchcoding/replies/page/7/?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/7/?output_format=md)

 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [[Garfunkel] Twoimages in single posts – in featured image posts? Change font size?](https://wordpress.org/support/topic/twoimages-in-single-posts-in-featured-image-posts-change-font-size/)
 *  [TouchCoding.net – Øyvind Sæther](https://wordpress.org/support/users/touchcoding/)
 * (@touchcoding)
 * [10 years, 2 months ago](https://wordpress.org/support/topic/twoimages-in-single-posts-in-featured-image-posts-change-font-size/#post-7074608)
 * sorry, try this instead:
 *     ```
       .single-post .featured-media {
           display: none;
       }
       ```
   
 * This removes the featured media only on the single-posts and not the front page.
 * To remove the date on the post also, try this:
 *     ```
       p.post-date {
           display: none;
       }
       ```
   
 *   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-7068181)
 * How did you make the code work? Some of the css is remove.
 * You need a child theme to edit the functions.php file. If you edit storefront
   theme, all modifications will be remove the next time you update. So try to create
   a child theme, copy the code into the functions.php in the new child theme and
   let me know if you get another white screen.
 * The header image can be fixed by apply some padding:
 *     ```
       .site-header {
       padding-bottom: 1em;
       }
       ```
   
 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [[Garfunkel] Twoimages in single posts – in featured image posts? Change font size?](https://wordpress.org/support/topic/twoimages-in-single-posts-in-featured-image-posts-change-font-size/)
 *  [TouchCoding.net – Øyvind Sæther](https://wordpress.org/support/users/touchcoding/)
 * (@touchcoding)
 * [10 years, 2 months ago](https://wordpress.org/support/topic/twoimages-in-single-posts-in-featured-image-posts-change-font-size/#post-7074573)
 * okey, tell me if I understand you right. You want the featured image only in 
   the posts site/homepage where all the posts are listed, but not in the post itself?
 * You could do like he did in that forum post, but you could also just use css.
   Like this:
 *     ```
       .featured-media {
           display: none;
       }
       ```
   
 * To hide the dates on the “posts” page this is the code:
 *     ```
       .posts .post-meta-date {
           display: none;
       }
       ```
   
 * I think when you talk about the archives, categories and meta under the comment
   section, you’re talking about the widget area in the footer. These can be changed
   under Appearance>Widgets. Here you can remove or reorder anything you want.
 * If I misunderstand anything or you want to remove something else, I might understand
   it better if you took a picture of what you want/want to change.
 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [[Responsive] Hide menu from mobile view](https://wordpress.org/support/topic/hide-menu-from-mobile-view/)
 *  [TouchCoding.net – Øyvind Sæther](https://wordpress.org/support/users/touchcoding/)
 * (@touchcoding)
 * [10 years, 2 months ago](https://wordpress.org/support/topic/hide-menu-from-mobile-view/#post-7074513)
 * Glad I could help you 😀 If you need any more help just let me know 😉
 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [[Rookie] How to remove the Search Bar](https://wordpress.org/support/topic/how-to-remove-the-search-bar/)
 *  [TouchCoding.net – Øyvind Sæther](https://wordpress.org/support/users/touchcoding/)
 * (@touchcoding)
 * [10 years, 2 months ago](https://wordpress.org/support/topic/how-to-remove-the-search-bar/#post-7074487)
 * I´m sorry, but I can’t seem to understand why it isn’t showing. Adding custom
   css is really easy however and applying the css I provided should solve the problem.
   I’m guessing you want to customize the theme to your need and you need css for
   that too. So a custom css plugin isn’t a bad thing to have 😉
 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [[Garfunkel] Twoimages in single posts – in featured image posts? Change font size?](https://wordpress.org/support/topic/twoimages-in-single-posts-in-featured-image-posts-change-font-size/)
 *  [TouchCoding.net – Øyvind Sæther](https://wordpress.org/support/users/touchcoding/)
 * (@touchcoding)
 * [10 years, 2 months ago](https://wordpress.org/support/topic/twoimages-in-single-posts-in-featured-image-posts-change-font-size/#post-7074472)
 * Okey. I try installing that theme on a test site and look at the problems your
   having.
 * 1. I don’t understand what you mean here. There can only be one featured image
   at one time. Do you mean images inside the post itself. If you only need one 
   image per post, just use the featured image and none inside the post itself.
 * 2. If you just mean the post info and the author info you can use some simple
   css to remove it.
 * here is the code:
 *     ```
       a.tab-post-meta-toggle {
           display: none;
       }
   
       a.tab-author-meta-toggle {
           display: none;
       }
   
       a.tab-comments-toggle {
           display: none
       }
       ```
   
 * This will hide the buttons.
 * 3. This can be archive with simple css:
 *     ```
       .single-post .post-title {
           font-size: 2.5em;
           color: #222;
       }
       ```
   
 * These are the values on your site at the moment. Change these value to what you
   desire.
 * Hope that helped you out 🙂
 *   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-7074014)
 * Glad I could help you Heatherfish 😀 If you need any more help, I’d be glad you
   help you again 😉
 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [[Rookie] How to remove the Search Bar](https://wordpress.org/support/topic/how-to-remove-the-search-bar/)
 *  [TouchCoding.net – Øyvind Sæther](https://wordpress.org/support/users/touchcoding/)
 * (@touchcoding)
 * [10 years, 2 months ago](https://wordpress.org/support/topic/how-to-remove-the-search-bar/#post-7074441)
 * Yeah, im sorry. You are sooo helpful. removing things that helped people, but
   apparently annoyed one moderator. Thanks for your help… won’t happen again
 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [[Rookie] How to remove the Search Bar](https://wordpress.org/support/topic/how-to-remove-the-search-bar/)
 *  [TouchCoding.net – Øyvind Sæther](https://wordpress.org/support/users/touchcoding/)
 * (@touchcoding)
 * [10 years, 2 months ago](https://wordpress.org/support/topic/how-to-remove-the-search-bar/#post-7074438)
 * Yeah, I don’t sell any themes or plugins… promoting my site? The link is to a
   tutorial, nothing more… and yes “Frowned upon”, not “we are deleting any links
   in your answer, just because we can”
 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [[Rookie] How to remove the Search Bar](https://wordpress.org/support/topic/how-to-remove-the-search-bar/)
 *  [TouchCoding.net – Øyvind Sæther](https://wordpress.org/support/users/touchcoding/)
 * (@touchcoding)
 * [10 years, 2 months ago](https://wordpress.org/support/topic/how-to-remove-the-search-bar/#post-7074434)
 * Can you point me to the rule that says I can’t do it like this. NO one else has
   said this before, only you… and, no “how do i learn css” is not the first question,
   but when I say apply this css, they ask how…
 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [[Rookie] How to remove the Search Bar](https://wordpress.org/support/topic/how-to-remove-the-search-bar/)
 *  [TouchCoding.net – Øyvind Sæther](https://wordpress.org/support/users/touchcoding/)
 * (@touchcoding)
 * [10 years, 2 months ago](https://wordpress.org/support/topic/how-to-remove-the-search-bar/#post-7074429)
 * Okey…? It was only meant as help… I make tutorials on how to use wordpress and
   it has been accepted before, so I don’t understand why you suddenly won’t allow
   me to. Again, this was only meant as help and instead of answering EVERY single
   css related question with how to apply css, I link to a guide on how to do that…
 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [[Garfunkel] Twoimages in single posts – in featured image posts? Change font size?](https://wordpress.org/support/topic/twoimages-in-single-posts-in-featured-image-posts-change-font-size/)
 *  [TouchCoding.net – Øyvind Sæther](https://wordpress.org/support/users/touchcoding/)
 * (@touchcoding)
 * [10 years, 2 months ago](https://wordpress.org/support/topic/twoimages-in-single-posts-in-featured-image-posts-change-font-size/#post-7074401)
 * Hi there Seasonsesame! 🙂
    I can definitely help you with this, but I need a 
   link to your site first. This makes it easier for me to look at what you need
   to be changed. Is your site locally or is it online?
 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [[Rookie] How to remove the Search Bar](https://wordpress.org/support/topic/how-to-remove-the-search-bar/)
 *  [TouchCoding.net – Øyvind Sæther](https://wordpress.org/support/users/touchcoding/)
 * (@touchcoding)
 * [10 years, 2 months ago](https://wordpress.org/support/topic/how-to-remove-the-search-bar/#post-7074399)
 * Hi there Jaybee1! 🙂
    The Customize tab changes depending on what the theme authors
   allows you to easily customize.
 * But you can use css to remove the search form like this:
 *     ```
       #site-navigation form {
           display: none;
       }
       ```
   
 * If you need any help with how to apply css take a look at this guide: _[Link 
   redacted]_
 * Get back to me if you need anything else 🙂
 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [[MH Magazine lite] reorder widgets areas in frontpage](https://wordpress.org/support/topic/reorder-widgets-areas-in-frontpage/)
 *  [TouchCoding.net – Øyvind Sæther](https://wordpress.org/support/users/touchcoding/)
 * (@touchcoding)
 * [10 years, 2 months ago](https://wordpress.org/support/topic/reorder-widgets-areas-in-frontpage/#post-7074395)
 * Hi Centrokehila! 🙂
    You can easily rearrange your widgets in Appearance>Widgets.
   If Your problem is that you want the two 1/3 Width over the 2/3 width, use the
   home 5 and keep home 2 empty.
 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [[Responsive] Hide menu from mobile view](https://wordpress.org/support/topic/hide-menu-from-mobile-view/)
 *  [TouchCoding.net – Øyvind Sæther](https://wordpress.org/support/users/touchcoding/)
 * (@touchcoding)
 * [10 years, 2 months ago](https://wordpress.org/support/topic/hide-menu-from-mobile-view/#post-7074392)
 * Hi jbg501! 🙂
    It looks like your slicknav becomes active when the screen size
   is 600px. You can use this to hide the main-nav when the screen size is >600px.
 * Like this:
 *     ```
       @media screen and (max-width: 600px) {
           .main-nav {
               display: none;
           }
       }
       ```
   
 * Apply this css in a custom css plugin or in a child theme 😉 Here is a guide 
   for you: _[Link redacted]_

Viewing 15 replies - 76 through 90 (of 186 total)

[←](https://wordpress.org/support/users/touchcoding/replies/page/5/?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)…
[5](https://wordpress.org/support/users/touchcoding/replies/page/5/?output_format=md)
6 [7](https://wordpress.org/support/users/touchcoding/replies/page/7/?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/7/?output_format=md)