Jay Mayu
Forum Replies Created
-
π It’s ok you deleted the comment. Actually he was accusing plugin author of malicious activity. That guy was not legit. Look at his profile
anyway let’s all abide by the community rules. I stand down π
Forum: Fixing WordPress
In reply to: Custom image sizes shows 404 errorFinally the plugin Regen Thumbnail helped me out of the situation.
Also make sure the content inside the wp-content/uploads have the rights either 755 or 777
You can do it by doing the command as something similar to below
sudo chmod 777 -R /var/www/your-path-to-wp-root/wp-content/uploads/Forum: Fixing WordPress
In reply to: Custom image sizes shows 404 errorFYI WordPress thumbnails can be accessed this way.
Forum: Fixing WordPress
In reply to: Custom image sizes shows 404 errorYes Mattios because I can access it via http://demo2.craftbizlanka.com/wp-content/uploads/2013/09/Retun-Risk.jpeg
Regards,
JayThis is exactly why you should create child themes Dean. You need to update the changes in the child theme.
When there is an update to the theme, you will only update the parent theme and it’ll not reset the styles as the styles are stored in the child theme.
Never ever edit the style.css of your theme.
Read more about child themes.
Forum: Themes and Templates
In reply to: [iTek] Turn off repeating headerChanging the styles to following would fix your problem
#parallax-bg { background-image: url('http://failuretoflourish.com/wp-content/uploads/2014/06/cropped-Screen-shot-2014-06-06-at-7.29.05-PM.png'); background-repeat: no-repeat; background-position: center top; background-attachment: scroll; background-size: cover; }The changes I’ve done here is made the
background-sizetocoverand set thebackground-repeatproperty tono-repeatRemember to create child theme before editing the styles.
Hope it all make sense.
Regards,
JayForum: Themes and Templates
In reply to: [iTek] Turn off repeating headerany div can idealy have background. Would you mind sharing the live url of your site? so I can look for the fix there?
Regards,
JayForum: Themes and Templates
In reply to: [iTek] Turn off repeating headerYou need to set the property no-repeat for your background image.
Check this w3schols tutorial. Hope it helps.
Regards,
JayForum: Themes and Templates
In reply to: Parament themeHey Vivie,
There are 2 ways to do it.1. Hard way – Edit PHP files used by pages
2. Easy way – Hide the comments form in pagesWhat is the url of your site? I might be able to help you out.
Regards,
JayForum: Themes and Templates
In reply to: CSS: can change height by px, but not by %as far as I know you can change width with % but not the height. It won’t work.
Check this answer at stackoverflow.
Regards,
JayFor some reason your menu has gone to the bottom of the screen in the mobile view. Strange indeed… Did you change any styles related to menu?
Regards,
JayForum: Themes and Templates
In reply to: [Klasik] klasik thene medicareCare to share a live url of your site that you wanna fix up?
Forum: Themes and Templates
In reply to: Adjusting Sidebardiv.title-area { margin-bottom: -200px; }Will do the magic. But as Esmi said if you buy commercial theme they must support it. Go behind them and get it done.
What is the height you want to set? and what is the opacity? tell me that I’ll fix the code and give you the solution.
Regards,
JaySeems you need to change the
.featured-textat style.cssBut remember to make the changes in the child theme else you will lose all the changes you’ve done when user updates the theme to new version.