Forum Replies Created
-
Hello,
I have already replied you in this other topic of yours: https://support.codeless.co/forums/topic/the-importing-the-dummy-data-and-content-is-not-working/
Note: We answer to topics based on their arrival time. The oldest first(read more on our Support Forum Policy). So keep replying or duplicating your post will only delay response time and overload the forum. Making it harder for other visitors to browse it and find answers.
As we try our best to assist you all, we require for your understanding and cooperating!Thank you and Best regards!
in reply to: envato-wordpress-toolkit is FAILING TO BE INSTALLEDHello,
I have already replied you in this other topic of yours: https://support.codeless.co/forums/topic/the-importing-the-dummy-data-and-content-is-not-working/
Note: We answer to topics based on their arrival time. The oldest first(read more on our Support Forum Policy). So keep replying or duplicating your post will only delay response time and overload the forum. Making it harder for other visitors to browse it and find answers.
As we try our best to assist you all, we require for your understanding and cooperating!Thank you and Best regards!
in reply to: Menu item with BGHello,
Sorry for the late reply.
Please add this code into your custom cs sbox:@media (max-width: 480px){ .header_4.fullwidth_slider_page .top_wrapper { padding-top: 0 !important; } .top_nav .widget { padding-left: 0 !important; padding-right: 8px !important; } .row-fluid [class*="span"] { min-height: 34px !important;} .parallax_slider .codeless_slider_wrapper { margin-top: 0 !important; } }Screenshot. if you still can not manage to change it, please send me your wp credentials in a private reply and tell us the exact look you want it to have. We will do it for you.
Best regards!
Hello,
Custom css box is located under General options.
Best regards!
in reply to: Google Map goes into box modeHello,
Sorry for the late reply.
That’s right. You can go to row settings and select Row stretch > Stretch row and Content, to display content in full width.Best regards!
Hello,
The Envato WordPress Toolkit plugin is used to update theme and plugins purchased from Themeforest. But it’s presence or not, does not prevent you from importing any demo data or do anything with theme options. You can even delete it completely and it will not affect any of theme options.
I already imported the default demo and made the initial configurations to your site (see reply of 6 days and 3 hours ago)
What demo look are you trying to get?
I see the Envato WordPress Toolkit plugin has already been installed (screenshot).
What is the issue?
Let us know for anything.Best regards!
in reply to: Search Page TitleHello,
Please make sure you have set on the active page header first in General options > Header Options > Default Page Header > Active Page Header.
Best regards!
in reply to: Tower Favicon PixelationHello,
Nice to see you figured it out. Thanks for sharing your solution.
Best regards!
in reply to: Social widget icons disappeared?Hello,
This is strange. This does not happen on your side. Did you made any changes to theme files? Or perhaps added any new third party plugin lately? Please send us your wp credentials in a private reply. So we can give it a closer look.
Best regards!
in reply to: Style issuesHello,
Sorry for the late reply.
Just like you wrote, the menu doe snot have a bottom border, only the shadow that does show up in all pages. The this line you are referring too is a feature of the content rows. So in some pages the row containing content does have a top and bottom border, while in some pages (like portfolio) there are no rows, just the content div and that does not have any border.
Add this code into your custom css box:.row-dynamic-el.section-style:first-child { border-top: 1px solid #ebebeb; }To have it for every page.
The background color is set as #f8f8f8 but another css code is overwriting it. To make it take priority, add this code into your custom css box:#content { background-color: #f8f8f8 !important; }Let us know.
Best regards!
in reply to: Removing title’s border in Codeless SlideHello,
Sorry for the late reply.
I added!importantto each attribute and now the borders are gone. Please check your site and let us know.Best regards!
in reply to: Blog Social Media IconsHello,
Sorry for the late reply.
Do you want to add the Linkedin share too? Please go to file includes/view/blog/loop-creative.php and find these lines:<div class="shares_container"> <ul class="shares"> <li class="facebook"><?php echo $facebook_shares; ?><i class="moon-facebook"></i></a></li> <li class="twitter"><?php echo $twitter_shares; ?><i class="moon-twitter"></i></a></li> <li class="google"><?php echo $google_plus_shares; ?><i class="moon-google"></i></a></li> <li class="tumblr"><?php echo $tumblr_shares; ?><i class="moon-tumblr"></i></a></li> </ul> </div>And replace with this:
<div class="shares_container"> <ul class="shares"> <li class="facebook"><?php echo $facebook_shares; ?><i class="moon-facebook"></i></a></li> <li class="twitter"><?php echo $twitter_shares; ?><i class="moon-twitter"></i></a></li> <li class="google"><?php echo $google_plus_shares; ?><i class="moon-google"></i></a></li> <li class="tumblr"><?php echo $tumblr_shares; ?><i class="moon-tumblr"></i></a></li> <li class="linkedin"><?php echo $linkedin_shares; ?><i class="moon-linkedin"></i></a></li> </ul> </div>Best regards!
in reply to: Full Blog Post ViewHello,
Can you please be more specific? What blog type do you want to use? To display more text you need to edit theme files.
To display more text in blog creative style, please go to file includes/view/blog/loop-creative.php and find these lines:<div class="text"> <?php if(is_single()){ the_content(); }else{ if($post_format == 'video' || $post_format == 'audio') echo codeless_text_limit(get_the_content(), 60); else echo get_the_excerpt();replace this line:
echo get_the_excerpt();
with this:echo codeless_text_limit(get_the_content(), 60);
The value: 60, is the number of words to display. Edit it to your wish.Best regards!
in reply to: Tablet ScrollingHello,
Sorry for the late reply.
Are you using parallax in the home slider? Please disable it and try again. Let us know if the issue persists. So we can give it a closer look.Best regards!
in reply to: Big menu and detail pages headerHello,
1-Please send us your wp credentials in a private reply. So we can give it a closer look.
2-Please show us a link where you are using the Flex slider?
3-Are you referring to single posts? if yes, add this code:
.fullscreen-single .info { display: none;}
4- Add this code:#comments, #respond { display: none;}Best regards!