Forum Replies Created
-
AuthorPosts
-
Mahesh
ParticipantHi @cherdavid,
Checked you site, you’ve used Custom CSS file and the following css is overriding the theme’s css. The following css is causing the problem
#branding #access, #colophon #access-footer { background: linear-gradient(#610000, #772626) repeat scroll 0 0 rgba(0, 0, 0, 0); clear: both; display: block; float: left; margin: 0 auto 2px; width: 100%; }
Remove the above codes and this will fix it.
Regards,
MaheshMahesh
ParticipantHi @Jeff the Tax CPA,
Go to “Dashboard=> Appearance=> Customize=> Theme Options=> Custom CSS” and add the following CSS:
Hide title in File Portal Page only#main #post-187 header.entry-header{ display: none; }
Hide title in all Pages
#main .page header.entry-header{ display: none; }
Regards,
MaheshDecember 30, 2015 at 10:48 am in reply to: Remove borders around the content boxes and widgets and narrow sidebar #81894Mahesh
ParticipantHi @rflores,
The image displayed in the slider and the blog post is the same image i.e. Featured Image. The image used inside the post content has nothing to do with it. The image selected as featured image is automatically cropped to 210*210 image to be displayed in the post list as thumbnail.
Let me know if any problem.
Regards,
MaheshDecember 30, 2015 at 10:32 am in reply to: How to make featured slider image width of screen? #81891Mahesh
ParticipantHi @Robert,
For removing space between featured slider and featured content, go to “Dashboard=> Appearance=> Customize=> Theme Options=> Custom CSS” and add the following CSS.
#feature-slider{ padding-bottom: 0; }
For full-width slider, Sakin will answer it, its a bit complicated.
Regards,
MaheshMahesh
ParticipantHi @Simon,
Please try changing to core theme i.e. twentyfourteen, twentyfifteen etc, if the the error still shows up it is a plugin issue, try deactivating plugins and check it.
Regards,
MaheshMahesh
ParticipantHi @Simon,
This is not the theme issue, may be some plugins you’ve used is causing this. Try deactivating the plugins and check it again. It would be better if you post in your site url.
Regards,
MaheshMahesh
ParticipantHi @Steve,
For this you have to create custom template. Then create a page and assign that template to it. Then Go to “Dashboard=> Appearance=> Customize=> Static Front Page and select “A static page” from “Front page displays”. And select the recently create post as Front page and Blog page in Post page. In custom template you’ll need to add the code to display custom posts you want in the front page.
This is out of the theme scope, you’ll need to hire a customizer.
Regards,
MaheshMahesh
ParticipantHi @Steve
Thank you for upgrading to Adventurous Pro version.
The theme is already translation ready, you can use translation plugins like qTranslate, WPML. You need to follow their instructions for implementation.
You’ll need to contact their support.Let me know if there is any other theme related problems.
Regards,
MaheshMahesh
ParticipantHi @Frank,
For that, first disable the slider. Go to “Dashboard=> Appearance=> Customize=> Featured Slider=> Slider Options” and select “Disable” option in “Enable Slider” dropdown. Then go back to “Customize=> Header Image” and select “Entire Site, Page/Post Featured Image” option from “Enable Featured Header Image” dropdown. Click “Save & Publish” and check the front page.
Regards,
MaheshDecember 29, 2015 at 10:17 am in reply to: Remove borders around the content boxes and widgets and narrow sidebar #81809Mahesh
ParticipantHi @Lucia,
Just went through your site. In the Custom CSS, there is an additional closing braces at the very end, please remove it. Please add the above CSS in it, it will work fine. You can also remove the following line from Custom CSS:
@media screen and (min-width: 961px) { }
Let me know if this helps.
Regards,
MaheshMahesh
ParticipantHi Alvin,
For changing sidebar widget titles font color, add the following CSS:
#secondary .widget-title{ color: green; }
Let me know if any problem arises and please post your site url.
Regards,
MaheshMahesh
ParticipantHi @mailhunter,
For removing large dark lines add following Custom CSS:
@media screen and (max-width: 960px) { .menu-item.menu-item-type-post_type.menu-item-object-page.menu-item-has-children.menu-item-535 ul.sub-menu, .menu-item.menu-item-type-post_type.menu-item-object-page.menu-item-has-children.menu-item-538 ul.sub-menu, .menu-item.menu-item-type-post_type.menu-item-object-page.menu-item-has-children.menu-item-540 ul.sub-menu{ border-top: none; } }
For the second issue, image not centered, it is a bit complicated, @Sakin will answer this.
Mahesh
ParticipantHi @Meunier,
I think you are admin yourself. For admin, there should not be any rights problems. Could you please clarify any further on what problems do you get. Please try to add some Custom CSS in “Dashboard=> Appearance=> Theme Options=> Custom CSS” box and check it if the values are saving or not.
Let me know if problem persists.
Regards,
MaheshMahesh
ParticipantHi @Alvin,
Please replace your CSS with following:
#main #content .page h1.entry-title > a { font-size: 24px; color:#777; }
Let me know if this helps.
Regards,
MaheshMahesh
ParticipantHi @mailhunter,
I think you are trying to hide the item only in mobile view. If so, please use the following CSS:
@media screen and (max-width:961px){ .no-mobile-menu-item { display:none !important; } }
Let me know if this solves your issue.
Regards,
MaheshMahesh
ParticipantI think you’ve edit in the theme files for custom background. This can be achieved with Custom CSS. Remove other codes you’ve add into the theme for background image.
In “Dashboard=> Appearance=> Theme Options=> Custom CSS”, remove the following codes:
#sidebar-header-top { background-color: #ffffff; } #branding { background-color: #ffffff; } #header-image { background-color: #ffffff; } #main-slider { background-color: #ffffff; } #main-slider .hentry { background-color: transparent; } #main { background-color: #ffffff; }
And add the following :
body { background-image: url('http://www.trendfly.org/wp-content/uploads/2015/12/Web_Blue-Print.jpg'); background-repeat: no-repeat; background-position: top center; background-attachment: fixed; } #branding { background-color: transparent; }
Leave the other as it is. Hope this helps with what you want. Please clarify on background stretching when centered point.
Regards,
Mahesh -
AuthorPosts