Title: Menu
Last modified: August 31, 2016

---

# Menu

 *  [aylortaylor](https://wordpress.org/support/users/aylortaylor/)
 * (@aylortaylor)
 * [10 years ago](https://wordpress.org/support/topic/menu-160/)
 * Hello,
 * I was wondering whether you can help me. When I click on one of the navigation
   menu items, I get a black dashed box appear round the link. How can I remove 
   this? I tried:
    a:link { text-decoration: none; } But that doesn’t seem to solve
   the problem.
 * Also, whilst building this page I used “Page builder” plugin to add a header 
   image to each page, exactly like the home page. However when viewing the site
   on a different PC, with larger screens, the header photo looks a lot smaller 
   than it should be, and the edges do not go to the end of the page. Do you know
   how I could solve this?
 * The site URL is [http://ragingbullmusic.com/](http://ragingbullmusic.com/)
    The
   images on the Gallery, Music and contact page, should be exactly the same as 
   the home.
 * [https://wordpress.org/plugins/siteorigin-panels/](https://wordpress.org/plugins/siteorigin-panels/)

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

 *  Thread Starter [aylortaylor](https://wordpress.org/support/users/aylortaylor/)
 * (@aylortaylor)
 * [10 years ago](https://wordpress.org/support/topic/menu-160/#post-7343486)
 * Sorry, the first question was meant to be sent to the theme author, not you.
 * I just need help with regards to the page builder section
 *  Plugin Support [Andrew Misplon](https://wordpress.org/support/users/misplon/)
 * (@misplon)
 * [10 years ago](https://wordpress.org/support/topic/menu-160/#post-7343730)
 * Hi aylortaylor
 * At a glance, it doesn’t look like you’re using Page Builder by SiteOrigin. Can
   you perhaps go to Plugins and confirm that? Thanks.
 *  Thread Starter [aylortaylor](https://wordpress.org/support/users/aylortaylor/)
 * (@aylortaylor)
 * [10 years ago](https://wordpress.org/support/topic/menu-160/#post-7343731)
 * Hi Andrew. Thank you for your reply. I can confirm it is defiantly page builder
   by site origin. Version 2.4.6.
 *  Thread Starter [aylortaylor](https://wordpress.org/support/users/aylortaylor/)
 * (@aylortaylor)
 * [10 years ago](https://wordpress.org/support/topic/menu-160/#post-7343732)
 * I have just had another look, I also have beaver builder installed, perhaps that’s
   causing the problem? Is the look achievable with site origin? To mirror the header
   on the home page? 🙂
 *  Plugin Support [Andrew Misplon](https://wordpress.org/support/users/misplon/)
 * (@misplon)
 * [10 years ago](https://wordpress.org/support/topic/menu-160/#post-7343733)
 * Thanks for checking. Are you sure the problem relates to Page Builder by SiteOrigin?
   The first image here: [http://ragingbullmusic.com/contact/](http://ragingbullmusic.com/contact/)
   for example, the markup looks to be from Beaver Page Builder.
 *  Plugin Support [Andrew Misplon](https://wordpress.org/support/users/misplon/)
 * (@misplon)
 * [10 years ago](https://wordpress.org/support/topic/menu-160/#post-7343734)
 * Sure. You’d edit the row and click the Layout tab on the right and set the Row
   Layout to Full Width Stretched.
 * [https://siteorigin.com/page-builder/documentation/building-a-page/](https://siteorigin.com/page-builder/documentation/building-a-page/)
 *  Thread Starter [aylortaylor](https://wordpress.org/support/users/aylortaylor/)
 * (@aylortaylor)
 * [10 years ago](https://wordpress.org/support/topic/menu-160/#post-7343737)
 * Thank you for your help. I have now achieved the look I wanted to with the header
   image 🙂
 * I do have another question though.. How do I minimise the free space from where
   the last row ends to the the footer text? I want the space to be the same amount
   of space between the header and first row.
 * I hope that makes sense, I’m just a bit unsure on where to put the CSS for this?
   
   🙂 Thanks again
 *  Plugin Support [Andrew Misplon](https://wordpress.org/support/users/misplon/)
 * (@misplon)
 * [10 years ago](https://wordpress.org/support/topic/menu-160/#post-7343738)
 * Sure 🙂
 * You could use a plugin like SiteOrigin CSS and target the padding your theme 
   adds to the bottom of the site content and to the top of the footer:
 * Insert the following and adjust as required:
 *     ```
       .site-content {
           padding-bottom: 6%;
       }
   
       .site-footer {
           padding-top: 6%;
       }
       ```
   
 *  Thread Starter [aylortaylor](https://wordpress.org/support/users/aylortaylor/)
 * (@aylortaylor)
 * [10 years ago](https://wordpress.org/support/topic/menu-160/#post-7343739)
 * Andrew..
 * You’ve been such a great help today and solved all my problems! I appreciate 
   your help so much! Thank you! Have a good day 🙂
 *  Plugin Support [Andrew Misplon](https://wordpress.org/support/users/misplon/)
 * (@misplon)
 * [10 years ago](https://wordpress.org/support/topic/menu-160/#post-7343740)
 * Glad we could help out 🙂 Have a good day too. Cheers for now.
 *  Thread Starter [aylortaylor](https://wordpress.org/support/users/aylortaylor/)
 * (@aylortaylor)
 * [10 years ago](https://wordpress.org/support/topic/menu-160/#post-7343741)
 * Oh sorry one more question! 😀 Ive just realised when checking the website from
   a mobile, its cut all the header photos in half..
 * [http://ragingbullmusic.com/](http://ragingbullmusic.com/)
 * Any ideas to why that might be? It displays fine on desktops.
 *  Plugin Support [Andrew Misplon](https://wordpress.org/support/users/misplon/)
 * (@misplon)
 * [10 years ago](https://wordpress.org/support/topic/menu-160/#post-7343742)
 * The row `margin-top` declaration you’re applying seems to be causing the issue.
   So previously I sent this rule:
 *     ```
       .site-content {
           padding-bottom: 6%;
       }
       ```
   
 * You could target both top and bottom instead of using the negative margin:
 *     ```
       .site-content {
           padding-top: 6%;
           padding-bottom: 6%;
       }
       ```
   
 * Adjust as required.
 *  Thread Starter [aylortaylor](https://wordpress.org/support/users/aylortaylor/)
 * (@aylortaylor)
 * [10 years ago](https://wordpress.org/support/topic/menu-160/#post-7343744)
 * Worked a treat 🙂 Thank you so much!
 *  Plugin Support [Andrew Misplon](https://wordpress.org/support/users/misplon/)
 * (@misplon)
 * [10 years ago](https://wordpress.org/support/topic/menu-160/#post-7343755)
 * For sure 🙂 Glad that helped.

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

The topic ‘Menu’ is closed to new replies.

 * ![](https://ps.w.org/siteorigin-panels/assets/icon.svg?rev=2556869)
 * [Page Builder by SiteOrigin](https://wordpress.org/plugins/siteorigin-panels/)
 * [Frequently Asked Questions](https://wordpress.org/plugins/siteorigin-panels/#faq)
 * [Support Threads](https://wordpress.org/support/plugin/siteorigin-panels/)
 * [Active Topics](https://wordpress.org/support/plugin/siteorigin-panels/active/)
 * [Unresolved Topics](https://wordpress.org/support/plugin/siteorigin-panels/unresolved/)
 * [Reviews](https://wordpress.org/support/plugin/siteorigin-panels/reviews/)

 * 14 replies
 * 2 participants
 * Last reply from: [Andrew Misplon](https://wordpress.org/support/users/misplon/)
 * Last activity: [10 years ago](https://wordpress.org/support/topic/menu-160/#post-7343755)
 * Status: not resolved