oopixjane
Forum Replies Created
-
Forum: Themes and Templates
In reply to: Custom page template with sidebarOh I found the issue. You need to add the sidebar inside
<div class="container">...</div>
, currently the sidebar is outside.Forum: Fixing WordPress
In reply to: Drop Down menu not working on home pageHi @theiteckhq, while waiting for the theme author to reply, you can add this to your CSS first for the menu to work on homepage:
body.home .sub-menu { display: block !important; }
This is just a temporary solution as it does not fix the root of the problem. Let me know how it goes.
For the “Subscribe” button, it is black on hover. Did you change color for the correct setting?
Forum: Themes and Templates
In reply to: Custom page template with sidebar@democle would you be able to share the link to your website so that we can take a look at the CSS? col-md-9 and col-md-3 works for my clean install of Zerif Lite so I am thinking the issue might be some custom CSS.
Forum: Plugins
In reply to: [Yoast SEO] JS and CSS code not workingGlad you fixed it! Can mark this topic as resolved then. ?? For the permalink, you might want to check the settings SEO > Advanced > Permalinks and see if they are set the way you want it to?
Forum: Plugins
In reply to: [Yoast SEO] JS and CSS code not workingJust wondering, where did you add your JS and CSS files? I want to check if your JS and CSS files are enqueued properly. Currently, the slider set a max-width of 700px regardless of the screen size. As a temporary solution, try adding the following CSS until we figure out the problem:
.metaslider { max-width: 100% !important; }
Forum: Plugins
In reply to: [Yoast SEO] JS and CSS code not workingThe website looks fine to me. I did a clean install with the same theme your website used (Ultra) and installed the Yoast SEO plugin and everything is working well.
What JS and CSS codes are not working? Since the website looks good, I guess the theme’s CSS files are working properly. Are you referring to additional JS and CSS files that you added?
Forum: Themes and Templates
In reply to: Custom page template with sidebarHi there! You can see that
<div class="content-left-wrap col-md-12">
is currently using “col-md-12” which is full width. Try changing it to “col-md-9”. Then add a class of “col-md-3” to the #sidebar div:<div id="sidebar" class="col-md-3">
. Let me know how it goes!Jane
Forum: Plugins
In reply to: [Yoast SEO] JS and CSS code not workingHi there, I have tried this plugin with many websites and it has not interfered with my JS and CSS before. Were your JS and CSS working before activating this plugin? Is there a link to your website which we can take a look?
Forum: Fixing WordPress
In reply to: Bootstrap navbar toggle hide when click in mobile viewI took a look and think it is a styling problem.
Try adding the following CSS to your theme/child theme:
.navbar-brand { width: 80%; } #navbar-collapse-1 { position: relative; z-index: 1; background-color: #e7e7e7; /*Or any other color you want the background of your nav to be*/ } @media (min-width: 768px) { #navbar-collapse-1 { background-color: transparent; } }
Let me know how it turns out. You can also edit your margins and paddings accordingly to make your logo and other elements align better.
Forum: Fixing WordPress
In reply to: Privacy policy page problemsYou are welcome, Davide. ??
Forum: Fixing WordPress
In reply to: Privacy policy page problemsOkay, how about creating a new Privacy page to replace this page? We can easily change the URL of the new page to https://www.technolawgies.com/privacy/ later. This is the solution I can think of without looking at the codes of your website.
Forum: Fixing WordPress
In reply to: Privacy policy page problemsDon’t panic! We settle one thing at a time. ?? Just a question for the images. The images do not appear on all pages or just the Privacy page?
Forum: Fixing WordPress
In reply to: Privacy policy page problemsThanks for the screenshot, now we can confirm that the section is not added by through the page editor. It is hard to troubleshoot the problems without looking at the codes now.
Is the Privacy page using any particular page template from the theme? Do you remember where you (or someone else) added these English text in the first place?If we really cannot figure where the problem is, I suggest that you create a clean new page https://www.technolawgies.com/privacy2 or similar, to test if the same English text still appears. If this new page works well, we can replace the privacy page with this new page. This is because I have checked other pages of the website and this text does not appear.
Forum: Fixing WordPress
In reply to: Privacy policy page problemsYou are welcome, let’s try to solve your problem. ?? Plugins don’t usually affect the content of our pages though. Could you provide a screenshot of the bottom of the page editor? If you created the page, you should be able to edit all the content of the page. Unless like esmi said, it might be added by a page template of the theme (or its child theme).
Forum: Fixing WordPress
In reply to: Bootstrap navbar toggle hide when click in mobile viewHi arslan91, it seems that your nav toggle button has no menu/links, maybe that is why nothing happen when you press the toggle button. Can you share the code you integrated for the navbar section?