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

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

 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [Change content area width](https://wordpress.org/support/topic/change-content-area-width-1/)
 *  [TouchCoding.net – Øyvind Sæther](https://wordpress.org/support/users/touchcoding/)
 * (@touchcoding)
 * [10 years, 2 months ago](https://wordpress.org/support/topic/change-content-area-width-1/#post-7097564)
 * Hi there chayleen!
    Can you please give me a link to your site, so I can inspect
   it to see what’s wrong? 🙂
 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [anybody know of a WP theme like this?](https://wordpress.org/support/topic/anybody-know-of-a-wp-theme-like-this/)
 *  [TouchCoding.net – Øyvind Sæther](https://wordpress.org/support/users/touchcoding/)
 * (@touchcoding)
 * [10 years, 2 months ago](https://wordpress.org/support/topic/anybody-know-of-a-wp-theme-like-this/#post-7098019)
 * Hi there Pablodesign!
    You can use a tool called [http://www.wpthemedetector.com/](http://www.wpthemedetector.com/)
   This will detect which theme is being used. Rigel.com uses a premium theme called
   BeTheme. You can find it on themeforest.
 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [[Smallblog] Width of YouTube videos](https://wordpress.org/support/topic/width-of-youtube-videos/)
 *  [TouchCoding.net – Øyvind Sæther](https://wordpress.org/support/users/touchcoding/)
 * (@touchcoding)
 * [10 years, 2 months ago](https://wordpress.org/support/topic/width-of-youtube-videos/#post-7098006)
 * Hi there, spdrmnky!
    The problem is that the iframe that your youtube videos 
   are inside has a defined width of 1200px. If you set the width to 100%, it will
   only use 100% of the container the iframe is inside.
 * Try this css:
 *     ```
       p iframe {
           width: 100%;
       }
       ```
   
 * remember to use either a child theme or a custom css plugin. I hope this solved
   your problem. 🙂
 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [[Sugar and Spice] Remove space between content and Title](https://wordpress.org/support/topic/remove-space-between-content-and-title-1/)
 *  [TouchCoding.net – Øyvind Sæther](https://wordpress.org/support/users/touchcoding/)
 * (@touchcoding)
 * [10 years, 2 months ago](https://wordpress.org/support/topic/remove-space-between-content-and-title-1/#post-7096520)
 * No problem! If you need anything else you can get back to me at any time 🙂
 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [Consistent Hover Over Background Size](https://wordpress.org/support/topic/consistent-hover-over-background-size/)
 *  [TouchCoding.net – Øyvind Sæther](https://wordpress.org/support/users/touchcoding/)
 * (@touchcoding)
 * [10 years, 2 months ago](https://wordpress.org/support/topic/consistent-hover-over-background-size/#post-7097047)
 * Hi there igendreau!
    You can try defining a height on all of the menu items, 
   so that all of them have the same height regardless of how long the name are.
 * Try adding this css:
 *     ```
       #topnav li a {
           height: 38px;
       }
       ```
   
 * Remember to use a custom css plugin or a child theme when apply css. I hope that
   solved it for you 🙂
 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [[Sugar and Spice] Remove space between content and Title](https://wordpress.org/support/topic/remove-space-between-content-and-title-1/)
 *  [TouchCoding.net – Øyvind Sæther](https://wordpress.org/support/users/touchcoding/)
 * (@touchcoding)
 * [10 years, 2 months ago](https://wordpress.org/support/topic/remove-space-between-content-and-title-1/#post-7096496)
 * This is the css you have to change:
 *     ```
       .entry-content {
           margin-top: 1.5em;
       }
   
       .entry-content h2 {
           margin-top: 0.75em;
       }
       ```
   
 * These are the values on your site right now. Replace them with what you want.
   Play around to make it look the way you want. If you want no space, when have
   0 margin.
 * Hope that helps 🙂
 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [[Sugar and Spice] Remove space between content and Title](https://wordpress.org/support/topic/remove-space-between-content-and-title-1/)
 *  [TouchCoding.net – Øyvind Sæther](https://wordpress.org/support/users/touchcoding/)
 * (@touchcoding)
 * [10 years, 2 months ago](https://wordpress.org/support/topic/remove-space-between-content-and-title-1/#post-7096478)
 * Hi there razvancs! 🙂
    Do you have a link to your site, so I can inspect it?
 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [[Virtue] Removing logo on mobile](https://wordpress.org/support/topic/removing-logo-on-mobile/)
 *  [TouchCoding.net – Øyvind Sæther](https://wordpress.org/support/users/touchcoding/)
 * (@touchcoding)
 * [10 years, 2 months ago](https://wordpress.org/support/topic/removing-logo-on-mobile/#post-7082840)
 * Here is the css code:
 *     ```
       .page-header {
           margin-top: 40px;
   
       }
       .contentclass {
           padding-top: 15px;
       }
       ```
   
 * Change these numbers to want you want. Play around with it until it looks good.
   If you don’t want any space set these to 0.
 * Hope that helps 🙂
 *   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/page/2/#post-7068206)
 * No problem, Padodalu! Glad I could help you 🙂
 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [[Virtue] Removing logo on mobile](https://wordpress.org/support/topic/removing-logo-on-mobile/)
 *  [TouchCoding.net – Øyvind Sæther](https://wordpress.org/support/users/touchcoding/)
 * (@touchcoding)
 * [10 years, 2 months ago](https://wordpress.org/support/topic/removing-logo-on-mobile/#post-7082788)
 * Hi there Hybis!
    Yes, you could use the css property of “display” and only apply
   it when the screen is less then mobile. Like this:
 *     ```
       @media only screen and (max-width: 414px) {
           img.kad-standard-logo{
               display: none;
           }
       }
       ```
   
 * For the top bar you could change the background-color of the header like this:
 *     ```
       .headerclass {
           background: #2d5c88;
       }
       ```
   
 * I hope that was what you were after. 🙂
 *   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/page/2/#post-7068200)
 * Try apply this css on the ul.site-header-cart.menu instead of cart-contents like
   this:
 *     ```
       ul.site-header-cart.menu {
           width: 33%;
           float: right;
       }
       ```
   
 *   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-7068197)
 * You can change the width of the cart in the css I gave you. Just play around 
   with the 33% until it looks good.
 *   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-7074619)
 * No problem Seasonsesame! 🙂
 *   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-7068189)
 * Sorry, this took so long time to figure out, but here is the css that should 
   make it look the way you want it to:
 *     ```
       header#masthead {
           margin-bottom: 0.236em;
       }
   
       .nav-menu {
           width: 67%;
           float: left;
       }
   
       cart-contents {
           width: 33%;
           float: right;
       }
       ```
   
 *   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-7074617)
 * There is a site called [http://www.w3schools.com/](http://www.w3schools.com/)
   where you can look up all these things. The selector is something you can find
   by using either the build-in inspector in Google Chrome or you could use “Firebug”.
   The selector tells the browser what elements you want to apply the css to. For
   example, I used the inspector and saw that the date on the posts had a class 
   called “post-date”. The “display” is the css attribute.
 * Hope that helped you out and that it wasn’t too confusing 🙂 If you need more
   help, just let me know 😉

Viewing 15 replies - 61 through 75 (of 186 total)

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