webtrackstudio
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: How to track memory usuage?use plugin “p3 profiler” this is best solution for you.
But if this plugin has not been updated for last 2years.so if this creates any problem for you then you can use alternative plugins for this given in below link
https://asphaltthemes.com/alternative-to-p3-plugin-performance-profiler/Forum: Fixing WordPress
In reply to: Text on homepage I cant get rid offRight know visual composer plugin is deactivated in your site.so first reactivate your visual composer plugin and edit this page with that and please share screen shot of that editor section of this page.
- This reply was modified 7 years, 1 month ago by webtrackstudio.
Forum: Fixing WordPress
In reply to: change the link of my pageyou set the your front page go to :
dashboard->appearance->customize->static front pageand choose the your static front page.
Forum: Fixing WordPress
In reply to: Frontpage section backgrounds are zoomed inin your css below line of code is cause of your problem
/* background-size: cover; */
so remove that line which I have commented in code.This will solve your problem and let me know If you find problem after this..header-filter { position: absolute; top: 0; bottom: 0; left: 0; right: 0; z-index: -1; background-position: center center; /* background-size: cover; */ }
Forum: Fixing WordPress
In reply to: RSS Feed Not Updating; Automatic RSS Newsletter Not Sendingfollow this article’s instructions
https://kb.mailchimp.com/campaigns/blog-posts-in-campaigns/troubleshooting-rss-in-campaignsand let me know if you get any problem to solve out issues ……
Forum: Fixing WordPress
In reply to: Center align issue with photosuse this css img.aligncenter { margin: 0 auto !important; display: table; }
- This reply was modified 7 years, 1 month ago by webtrackstudio.
- This reply was modified 7 years, 1 month ago by webtrackstudio.
Forum: Fixing WordPress
In reply to: CSS in the mobile version of my siteuse this css in mobile verson and menu fix the right side
@media only screen and (max-width: 767px){
.site-branding, .btn-menu {
text-align: right;
}
}- This reply was modified 7 years, 2 months ago by webtrackstudio.
Forum: Fixing WordPress
In reply to: Parent Theme Enabled Required for Child?No, parent theme do not enabled only activate the child theme but do not delete the parent theme and do the all changes in child theme.
Forum: Fixing WordPress
In reply to: Can’t login to /wp-admin area with correct username and passwordfollow these instruction given in this link…
Login Trouble SolutionForum: Fixing WordPress
In reply to: How to align text in columnsI hope you are looking for this kind of result, please let me know if this solution make sense.
<!DOCTYPE html> <html> <head> <style> * { box-sizing: border-box; } .header, .footer { background-color: grey; color: white; padding: 15px; } .column { float: left; padding: 15px; } .clearfix::after { content: ""; clear: both; display: table; } .menu { width: 25%; } .content { width: 75%; } .menu ul { list-style-type: none; margin: 0; padding: 0; } .menu li { padding: 8px; margin-bottom: 8px; background-color: #33b5e5; color: #ffffff; } .menu li:hover { background-color: #0099cc; } .containerMenu { display:flex; } .containerMenu #m1 { order:1; margin-right:20px; } .containerMenu #m3 { order:2; margin-right:20px; } .containerMenu #txt { order: 3; padding: 8px; margin-bottom: 8px; } </style> </head> <body> <div class="header"> </div> <div class="clearfix"> <div class="column menu"> <ul class="containerMenu"> <Strong id="txt"> Test text appear </strong> <li id="m1">Part1</li> <li id="m3">Part 3</li> </ul> </div> </div> <div class="footer"> <p>Welcome</p> </div> </body> </html>
Forum: Fixing WordPress
In reply to: Remove gray bar below menuplease put this code in your ‘style.css’ file which you can find out at dashboard/appearence/editor/style.css
and put this code
.custom-header-image { margin-top:0px !important; }
Forum: Fixing WordPress
In reply to: Events CalendarUse this plugin https://www.ads-software.com/plugins/event-organiser/
There may be works for you.Forum: Fixing WordPress
In reply to: Published page not showing, but in menuGlad to help ??
Forum: Fixing WordPress
In reply to: content import from different systemGo to dashboard->Tools->Import->WordPress install now then import the your file and Click the Go Button
Forum: Fixing WordPress
In reply to: Contact Form 7The red border means that Contact Form 7 tried to send mail with wp_mail(), but it failed. To solve the issue, you need to find out the actual reason why it is failing in the first place.
There could be various reasons such as the mail setup wasn’t valid.
The sending would also fail if the mail server was down, inaccessible or experiencing other problems. In this case, it will be more difficult to solve the issue by yourself. I would suggest you contact your host for support. They may be able to check the error logs to find out the reason for the failure.
In some cases, it is possible to solve this issue by using another mail server. Postman SMTP is one of the plugins that will help you do that.