Technical Queries

Home/Support Forums/Pniber/Technical Queries

Viewing 2 posts - 1 through 2 (of 2 total)
  • Author
    Posts
  • #417
    shoaib
    Participant

    Hi,

    Thanks for your support so far.

    I need your help in below

    1.Need cloud effect on about us banner image
    https://3degrees.vasenth.com/about-us/

    2.Search icon – possible to place it before the social icons? We want the Search to be more prominent and visible on the menu bar.In the Search field, change “Type your keywords” to “What are you looking for?”

    Please advise.

    #418
    LenVan Support
    Keymaster

    Hi,

    1) In the admin panel of the About Us page, switch to the standard editor https://yadi.sk/i/afDCKxsj5EDaKw Add an image to Featured image https://yadi.sk/i/9q0HnkySgJE8Ow you can also turn off the page title https://yadi.sk/i/mnGfH35-Vhw10g

    Result https://yadi.sk/i/R-hvgWIOCN47Vg

    2) To change the position of the search icon add the following code in Theme Settings -> Advanced -> Custom CSS -> Custom CSS field:

    .site-header .add-btns li.search {
        order: -1;
        margin-left: 0;
        margin-right: 10px;
        padding-left: 0;
        padding-right: 11px;
    }
    .site-header .add-btns li.search:before {
        left: auto;
        right: 0;
    }
    .site-header .add-btns li.search .btn {
        padding-right: 8px;
    }

    To change the search text, follow the https://3degrees.vasenth.com/wp-admin/theme-editor.php?file=functions.php link and paste the following code after line 220 (https://yadi.sk/i/bDF6Q6GxLoKY2w)

    function pniber_change_some_text( $translation, $text, $domain ){
    	if ( $text === 'Type your keywords...' ) {
    		$translation = 'What are you looking for?';
    	}
    
    	return $translation;
    }
    add_filter( 'gettext', 'pniber_change_some_text', 10, 3 );

    Regards, LenVan

Viewing 2 posts - 1 through 2 (of 2 total)
  • The topic ‘Technical Queries’ is closed to new replies.