Forum Replies Created
-
AuthorPosts
-
March 15, 2016 at 10:53 am in reply to: Featured Content section defaults to demo version after upgrading to 4.6 #87505
Mahesh
Participant@karbasetti: The update should not be making any changes to the database. I checked it on our server and didn’t face any issue like you’ve mentioned. Does it revert everything to default or just the Featured Content section?
Regards,
MaheshMahesh
Participant@sbartch: Thank you for your appreciation. Have a nice day!
Regards,
MaheshMahesh
Participant@lygiahuan: Glad you made it work out. Thank you for your appreciation. Have a nice day!
Regards,
MaheshMahesh
Participant@abhishek1975: Thank you for your appreciation. Have a nice day!
Regards,
MaheshMahesh
Participant@husker: Its kind of a strange issue. And is only seem to be visible in iphone portrait version. We are working on it. We’ll let you know once its fixed.
Regards,
MaheshMahesh
Participant@katonov: Go to “Dashboard=> Appearance=> Customize=> Theme Options=> Custom CSS” box and add the following CSS”
1. If you want to hide entry-title on given page only:.page #content article.page.post-13 .entry-header { display: none; }2. If you want to hide entry-title on entire page of you site:
.page #content article.page .entry-header { display: none; }Regards,
MaheshMahesh
Participant@arnold: Go to “Dashboard=> Appearance=> Customize=> Theme Options=> Custom CSS” box and add the following CSS:
#feature-slider .cycle-pager { display: none; }Regards,
MaheshMahesh
Participant@barb: You’re using one-column no sidebar layout so, the width of the content seem bit smaller. You can use other layouts i.e. sidebar-left or sidebar-right. Or if you prefer to use full-width with no sidebar layout, I recommend you to upgrade to pro version.
But if you want to change the view in free version itself, go to “Dashboard=> Appearance=> Customize=> Theme Options=> Custom CSS” box and add the following CSS:.one-column .site { width: 1000px; } @media screen and (max-width: 1024px) { .one-column .site { width: 960px; } } @media screen and (max-width: 990px) { .one-column .site { width: 910px; } } @media screen and (max-width: 960px) { .one-column .site { width: 720px; } } @media screen and (max-width: 767px) { .site, .one-column .site { width: 600px; } } @media screen and (max-width: 640px) { .site, .one-column .site { width: 460px; } } @media screen and (max-width: 479px) { .site, .one-column .site { width: 100%; } }Regards,
MaheshMahesh
Participant@[email protected]: By link in custom menu, in your site’s current menu you have My Dream Life with link
http://mydreamlife.me/, I meant to change this. But what you need is way more different than this. I think you’ll need to htaccess redirect or server level support as it falls beyond theme support scope.Regards,
MaheshMahesh
Participant@hollyehrocketmail-com: I’m afraid this is not possible, only the link in custom menu can be edited/customized.
Regards,
MaheshMahesh
Participant@holleyhrocketmail-com: Go to “Dashboard=> Appearance=> Customize=> Theme Options=> Custom CSS” box and add any of the following CSS as required:
For Blog List Page
1. For disabling posted date from all posts:.blog #content .post .entry-meta { display: none; }2. For disabling posted date from selected posts(Hides post date from post titled Lucid Dreaming):
.blog #content .post.post-2925 .entry-meta { display: none; }For Blog Single Page
1. For disabling posted date from all single page posts (Entire site):.single #content .post .posted-on { display: none; }2. For disabling posted date from selected single page posts(Hides post date from post titled Lucid Dreaming):
.single #content .post.post-2925 .posted-on { display: none; }Let me know if any trouble.
Regards,
MaheshMahesh
Participant@hollyehrocketmail-com: Do you mean to change the home url in menu. If you have used the default page menu, then home page should link to your default site URL. If you want to user custom links for home, then you will need to create custom links.
Details for this is here: https://codex.wordpress.org/WordPress_Menu_User_Guide
Let me know if this is what you wanted.Regards,
MaheshMahesh
Participant@abhishek1975: Go to “Dashboard=> Appearance=> Customize=> Theme Options=> Custom CSS” box and add the following CSS:
#secondary-menu { background-color: #dd9221; }Regards,
MaheshMahesh
Participant@husker: I don’t know why but padding in <td> tag is causing the issue, using following CSS fixed the issue for you test-image page:
table td:nth-child(4n+4), table td:nth-child(4n+1) { width: 40%; }Let me know if this helps.
Regards,
MaheshMahesh
Participant@husker: You are using image with different sizes that is why you are facing the issue. Please use the images with same resolutions in the table.
Regards,
MaheshMahesh
Participant@shawzepe: Sorry for making you repost you site url. Checked your site, and seems the search bar in your site is not the default theme’s search bar. Have you customized the theme and added some code to display the search bar? if yes, you have to remove it. You have already hidden the default search bar of the theme with Custom CSS.
Let me know further.Regards,
MaheshMarch 14, 2016 at 9:55 am in reply to: Primary menu holds less text than in the non-Pro theme #87422Mahesh
Participant@zhpvwebmaster: Thank you for your appreciation. Have a nice day!
Regards,
MaheshMahesh
Participant@matthewseanmclachlan: You are missing a closing brace at the end of your Custom CSS.
1. To turn off transparency on header top you can change your existing code in Custom CSS:#header-top { background: #ea3b36; background: rgba(234, 53, 54, 0.7); box-shadow: 0 0 7px rgba(0, 0, 0, 0.5); -moz-box-shadow: 0 0 7px rgba(0, 0, 0, 0.5); -webkit-box-shadow: 0 0 7px rgba(0, 0, 0, 0.5); position: fixed; z-index: 99; }to the following:
#header-top { background: #ea3b36; background: rgba(234, 53, 54, 1); box-shadow: 0 0 7px rgba(0, 0, 0, 0.5); -moz-box-shadow: 0 0 7px rgba(0, 0, 0, 0.5); -webkit-box-shadow: 0 0 7px rgba(0, 0, 0, 0.5); position: fixed; z-index: 99; }2. Making only white part transparent in post:
For semi-transparent.post.post-32 { background: rgba(255, 255, 255, 0.5); }OR for fully transparent:
.post.post-32 { background: rgba(255, 255, 255, 0); }3. Making only white part transparent in footer:
#site-generator { background: rgba(255, 255, 255, 0.5); } #colophon { background-color: transparent; }Note: For full transparency, change the last attribute 0.5 to 0 in background as in number 2.
Let me know if any problem.Regards,
Mahesh -
AuthorPosts
