Tagged: ,

Viewing 14 posts - 1 through 14 (of 14 total)
  • Author
    Posts
  • #43801
    Tillman
    Member

    Hello,

    I just bought the Catch Box Pro Theme and I love it!

    1 Question: But I dont need the navigation bar! How can I remove it?

    2. Question: I’m using a header picture without any margin on the left and the right! I want to have the title on the header, not over or above the header!

    How can I fix that!

    Thank you in advance!

    #43816
    Sakin
    Keymaster

    @Tillman: Please post in your site URL so that I can check in details.

    #43828
    Tillman
    Member

    Hi!

    URL is http://www.globe-longboards.de

    Regards

    #43830
    Sakin
    Keymaster

    @Tillman:
    For Menu
    There is no default option to hide Primary Menu. But there is two trick to do it.
    1. Go to “Appearance => Menus” and then click on “create a new menu” and name is anything like “Hide Menu” and save changes. Then go to “Appearance => Menus => Manage Locations” and then select that Hide Menu in Primary Menu and save changes.
    2. Or if this is difficult then you can hide the menu from Custom CSS. For that you can add the following css in “Appearance => Theme Options => Custom CSS” box.
    #branding #access { display: none; }

    For Header Picture
    So, you want the Site Title and tagline text on header image, then you can add the following css in “Appearance => Theme Options => Custom CSS” box.

    .logo-wrap { position: relative; }
    #hgroup { position: absolute; left: 40px; top: 20px; }
    #43835
    Tillman
    Member

    Thanks!! Thats what I call a great support! Keep up the great work!

    #43854
    Tillman
    Member

    Hello Sakin!

    Another question: How get I can get round corners at my header picture?

    Thanks in advance!

    #43867
    Sakin
    Keymaster

    @Tillman: You can add the following css in “Appearance => Theme Options => Custom CSS” box.

    #branding #site-logo img {
        border-radius: 5px 5px 0 0;
        -moz-border-radius: 5px 5px 0 0;
        -webkit-border-radius: 5px 5px 0 0;
    }
    #43869
    Tillman
    Member

    Nice! Thank you so much!

    #49562
    Andrew
    Participant

    I Have a similar question but I only need to remove the navigation from some pages not all.

    Basically I need the primary navigation, but I have a few specific pages which must not have any navigation – how can I do this?

    I am also using Catch Box Pro.

    #49596
    Sakin
    Keymaster

    @Andrew: You can add CSS to hide the navigation based on the page ID class. So, can you send me the URL of the pages where you want to hide it then I will send you css to hide it.

    #49598
    Andrew
    Participant

    Thank you – here they are. You will have to tell me where to put the CSS as well please.

    resource.adventure-qualifications.com/administration/course-quality-assurance/
    resource.adventure-qualifications.com/administration/online-course-satisfaction/
    resource.adventure-qualifications.com/assessment-review/

    #49635
    Sakin
    Keymaster

    @Andrew: You can add the following css in “Appearance => Theme Options => Custom CSS” box:

    .page-id-1234 #branding #access,
    .page-id-1218 #branding #access,
    .page-id-959 #branding #access { 
        display: none; 
    }
    #49636
    Andrew
    Participant

    Fantastic – Great. Just a question. Is there any way to remove the whole header in the same way from those pages? I just want the body if at all possible.

    #49638
    Sakin
    Keymaster

    For whole header it will be as below:

    .page-id-1234 #branding,
    .page-id-1218 #branding,
    .page-id-959 #branding { 
        display: none; 
    }
Viewing 14 posts - 1 through 14 (of 14 total)
  • The topic ‘Remove Navigation Bar & Title on Header picture’ is closed to new replies.