Viewing 14 posts - 41 through 54 (of 54 total)
  • Author
    Posts
  • #30666
    Sakin
    Keymaster

    @ashrafashraf: You site in Under Maintenance also you reach out of Free support. Please consider hiring customizer. I will not be able to help you beyond the theme supported functions.

    #30670
    ashrafashraf
    Member

    I fixed this issue.
    But I open new ticket that i need to help me for it.

    Please

    #30794
    ashrafashraf
    Member

    Please Sakin, How can i decide it ay this gallery will be found only one the front page ?
    AND How can i know the page ID ? Thanks

    #30842
    Sakin
    Keymaster

    @ashrafashraf: If it’s your homepage is static front page then you can use is_front_page() condition, if you use latest post in front page then use is_home() condition . You will find Page ID in All pages columns and if not then you can use this plugin Catch IDs

    #30843
    ashrafashraf
    Member

    Thanks for youe answer,
    I made the following:
    function catchbox_extra_gallery() {
    if (is_page(16)) {

    echo do_shortcode(‘[go_portfolio id=”flex9″]’);
    }
    }
    add_action( ‘catchbox_before_primary’, ‘catchbox_extra_gallery’, 15 );

    is that ok?

    #30864
    Sakin
    Keymaster

    @ashrafashraf: there is missing bracket close }. It will be as below:

    function catchbox_extra_gallery() {
    	if ( is_page( 16 ) ) {
    		echo do_shortcode('[go_portfolio id="flex9"]');
    	}
    }
    add_action( 'catchbox_before_primary', 'catchbox_extra_gallery', 15 );
    #30866
    ashrafashraf
    Member

    Yes sir,You are right.

    Thanks

    #30874
    ashrafashraf
    Member

    Please , How can i change the size of my items Menu : http://grab.by/wVFg

    ?please

    #30876
    Sakin
    Keymaster

    @ashrafashraf: I don’t suggest changing font size in responsive design site. If you need then you need to consult with css developer. So better hire it.

    #30956
    ashrafashraf
    Member

    The problem , it is very difficult to read the items of my Menu bar,
    YOU can check it here: http://grab.by/wVFg

    So what must i do ?

    #30971
    Sakin
    Keymaster

    @ashrafashraf: try this
    #branding ul.menu { font-size: 16px; }

    #30973
    ashrafashraf
    Member

    Thank you so much,
    Fixed,
    And please for this section also:
    http://grab.by/wWmm

    it is also very difficult to read it.

    Thanks

    #31057
    Sakin
    Keymaster

    @ashrafashraf: try this
    #slider-wrap .featured-text { font-size: 16px; }

    #31071
    ashrafashraf
    Member

    Thanks sir,
    a
    Have a nice day
    //A.J.

Viewing 14 posts - 41 through 54 (of 54 total)
  • The topic ‘add gallery’ is closed to new replies.