younuskhan
Forum Replies Created
-
Forum: Developing with WordPress
In reply to: How to change page linkFirst, go to Pages > All Pages in your WordPress dashboard. This will display all the pages of your website. Click on Edit on the page you want to change the URL.
If you use the classic editor, you’ll see the permalink option just below the title of the page. Click Edit.
Then, it will allow you to change the path on your link for the particular web page. Once you enter the new URL here, click on Ok and Update the page to change the URL.
Change Page URL using Gutenberg Editor:-
On the other hand, if you use the Gutenberg editor, you can change your page URL from the page settings on the right sidebar. Just click on the link on the URL option.
This will let you change the URL of the page. Just enter the new URL path in the PERMALINK option. Finally, Update the page.
Forum: Fixing WordPress
In reply to: Can’t Change Mobile Menu ColorHi @rjbinney
Kindly use this code to change the menu color in mobile devices:-
@media (max-width: 921px){ body .ast-builder-menu-mobile .main-navigation .main-header-menu .menu-item > .menu-link { color: #624A3C !important; } }
Hope it works!
Forum: Fixing WordPress
In reply to: Change Font StyleYou can use custom CSS to change the produce title font style. Here is a code:-
.box-text-products .title-wrapper a { font-family: fantasy; }
Please replace the font family name as required.
To add custom CSS, please follow these steps:-
Please go to WordPress dashboard ? Appearance ? Customize?? Additional CSS page.
You need to put the above code and then save it.
I hope this helps.