To update the Wordpress theme, you need to do below things.
<link href="https://fonts.googleapis.com/css?family=Roboto" rel="stylesheet">
What do you think on this topic? Please express your opinion or ask any question through comment below. You can write to me at reply2sagar@gmail.com
- Go to Wordpress admin
- Go to Appearance->Editor.
- There you will find lots of files like header.php, content.php and sidebar.php
- So you can change these files and changes will be applied to all of your pages and posts
I added 3 divs in above files.
2 divs were added right after <?php dynamic_sidebar( 'sidebar-2' ); ?> and at the end of sidebar.php
1 div was added in header.php just before site main
1 div was added in content.php just after entry title
Similarly you can add any html.
Similarly if you want to change the font of wordpress site, you can edit below file.
Just go to https://fonts.google.com and select the required font.
Then update your style.css file with below line
and also make sure you add the link in header.php.Similarly if you want to change the font of wordpress site, you can edit below file.
Just go to https://fonts.google.com and select the required font.
Then update your style.css file with below line
- body{
- font-family: 'Roboto', sans-serif;
- }
<link href="https://fonts.googleapis.com/css?family=Roboto" rel="stylesheet">
What do you think on this topic? Please express your opinion or ask any question through comment below. You can write to me at reply2sagar@gmail.com