Home Forums Basel support forum Capitalization / Log in

Capitalization / Log in

Viewing 6 posts - 1 through 6 (of 6 total)
  • Author
    Posts
  • #167211

    christianlifechurch
    Participant

    Hello,

    Just purchased this theme and the sidebar of the blog page is all uppercase. How can you help to Capitalize it instead.

    2. I want to have a log in and register link on the top menu, how can you help/

    Thanks
    PKP

    #167215

    Hello,

    Thank you very much for choosing our theme and for contacting us.

    I cannot view your site now https://prnt.sc/qljnnj Please contact us when the site is working.

    Best Regards

    #167331

    christianlifechurch
    Participant

    Hello,

    Please see the site below.

    #167361

    Hello,

    Please add this code to the Theme Settings > Custom CSS > Global:

    .widget-title, .widgettitle {
        text-transform: none;
    }
    .basel-recent-posts .entry-title a{
    text-transform:none;
    }

    You can find the option to add any content or links in the Theme Settings > Header > Top bar > Text in the header top bar https://prnt.sc/qlyilt

    Best Regards

    #167372

    christianlifechurch
    Participant

    Thanks, but what about the “Register and Sign in” option? Can you help please>?

    #167380

    Hello,

    By default, this header layout doesn’t have Login/Register link. But you can add it manually placing the following code snippet to the functions.php file in the child theme.

    add_filter( 'basel_header_configuration', 'basel_custom_header_configuration', 1, 1 );
    
    function basel_custom_header_configuration() {
    
    	return array(
    		'container' => array(
    			'wrapp-header' => array(
    				'logo',
    				'widget_area',
    				'right-column' => array(
    					'header_links',
    					'search',
    					'wishlist',
    					'cart',
    					'mobile_icon',
    				)
    			)
    		),
    		'navigation-wrap' => array(
    			'container' => array(
    				'main_nav'
    			)
    		)	
    	);
    }

    Or change the Header Layout to have this element in the Header.

    Best Regards

Viewing 6 posts - 1 through 6 (of 6 total)