Viewing 2 posts - 1 through 2 (of 2 total)
  • Author
    Posts
  • #20100
    mpetric
    Member

    Hello CatchThemes support team!

    I have two problems:
    1. I created category page where I will be publishing news (in my language Novice). The title of the page was Category Archives: Novice. I figured out how to remove “Category Archives:” part. Now I want the page title to be the same default style as other page titles. >> PAGE

    2. In responsive menu view I shouldn’t be able to click two menu buttons (“Band” and “Media”) that are only a hover buttons for two clickable submenus.

    #20109
    Sakin
    Keymaster

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

    .page-title {
        color: #444;
        font-family: Arial,sans-serif;
        font-size: 34px;
        font-weight: bold;
        line-height: 45px;
    }
    @media screen and (max-width: 767px) {
    	.page-title { 
    		font-size: 19px;
    		line-height: 25px;
    	}
    }
    @media screen and (max-width: 319px) {
    	.page-title { 
    		font-size: 18px;
    		line-height: 22px;
    	}
    }

    2. For that, you need to go to “Appearance => Menus” and then create custom menu. Then you need to assign that menu from “Appearance => Menus => Manage Locations”.

    So, for the menu item that you don’t want to link with, like for Band and Media. You need to add that menu item as links. In that custom link field, in URL just add # and in Link Text you can add the text to menu and wrap with span code like this <span onClick="return true">Band</span>, then click on “Add To Menu”. This will add that Prent Drop menu in your menu. Then after adding it, if you don’t want that # as well then you can delete that # from URL and Click on Save Menu.

Viewing 2 posts - 1 through 2 (of 2 total)
  • The topic ‘Page title and responsive menu problem’ is closed to new replies.