• 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 https://ragingbullmusic.com/
    The images on the Gallery, Music and contact page, should be exactly the same as the home.

    https://www.ads-software.com/plugins/siteorigin-panels/

Viewing 14 replies - 1 through 14 (of 14 total)
  • Thread Starter aylortaylor

    (@aylortaylor)

    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

    (@misplon)

    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

    (@aylortaylor)

    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

    (@aylortaylor)

    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

    (@misplon)

    Thanks for checking. Are you sure the problem relates to Page Builder by SiteOrigin? The first image here: https://ragingbullmusic.com/contact/ for example, the markup looks to be from Beaver Page Builder.

    Plugin Support Andrew Misplon

    (@misplon)

    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/

    Thread Starter aylortaylor

    (@aylortaylor)

    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

    (@misplon)

    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

    (@aylortaylor)

    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

    (@misplon)

    Glad we could help out ?? Have a good day too. Cheers for now.

    Thread Starter aylortaylor

    (@aylortaylor)

    Oh sorry one more question! ?? Ive just realised when checking the website from a mobile, its cut all the header photos in half..

    https://ragingbullmusic.com/

    Any ideas to why that might be? It displays fine on desktops.

    Plugin Support Andrew Misplon

    (@misplon)

    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

    (@aylortaylor)

    Worked a treat ?? Thank you so much!

    Plugin Support Andrew Misplon

    (@misplon)

    For sure ?? Glad that helped.

Viewing 14 replies - 1 through 14 (of 14 total)
  • The topic ‘Menu’ is closed to new replies.