Forum Replies Created

Viewing 15 posts - 811 through 825 (of 1,555 total)
  • Author
    Posts
  • in reply to: Glitchy #158387
    Psink
    Keymaster

    after adding the above code in the theme your site looks something like this, please check this screen record
    https://www.awesomescreenshot.com/video/5437488?key=0cb488ac37f515a01522e724b8a99959

    in reply to: Glitchy #158386
    Psink
    Keymaster

    @EUPHORIC-VOCALIST, Please add this CSS in the additional CSS. It will solve the following issue

    – Top bar spacing issue
    – slider Glitchy issue
    – other spacing in the homepage

    regarding customizer, yes it will show the mobile menu because the customizer parts almost cover 25% of the screen, so preview parts behave as like its a tablet screen. you can Zoom out the screen by pressing ctrl and “-” btn in the keyboard to show full menu

    
    .enabled-sticky-primary-menu .site-header.fixed,
    .enabled-sticky-primary-menu .site-header {
        position: sticky;
        top: 0;
    }
    .enabled-sticky-primary-menu .site-header.fixed .site-description {
        display: block;
    }
    
    #tophead .header-social-wrapper {
        float: right;
    }
    
    #top-head-right{
        display:none;
    }
    
    #quick-contact {
        width: 50%;
    }
    
    #main-slider .slider-buttons a,
    #main-slider .slider-buttons a:hover{
        color: #fff !important;
    }
    
    #sidebar-front-page-widget-area .widget {
        padding: 10px 0;
    }
    
    #sidebar-front-page-widget-area .featured-page-widget .featured-page-content {
        padding: 0;
    }
    

    Hope this will fix all of the issues

    in reply to: Change colour around slider caption #158385
    Psink
    Keymaster

    @EUPHORIC-VOCALIST, Please add this CSS in the additional CSS to change the strip color of the caption

    
    #main-slider .cycle-caption{
        border-right: 8px solid #fb6602;
    }
    

    you can change the value 8px to any other number to increase or decrease the width of the strip and color code #fb6602 to any other color code to change the color of the strip

    in reply to: Trips on regular pages #158360
    Psink
    Keymaster
    in reply to: Author and Category from Post #158357
    Psink
    Keymaster

    can you please share your site URL? We will check and send you a few lines of css code to remove it

    in reply to: Trips on regular pages #158356
    Psink
    Keymaster

    Can you please share a screenshot or any kind of visual representation? I did not get the exact meaning for your query ” how can I integrate those trips sumups (the trips as they appear on the filter page) in a regular WP webpage”

    in reply to: Trips on regular pages #158346
    Psink
    Keymaster

    can you please update your theme? i tried to send you a php code to replace the previous function code, but we can post any type of php code in the support ticket. We have already fixed search trip page issue in updated version 1.1.9, please update your theme form version 1.1.8 to 1.1.9

    in reply to: Trips on regular pages #158342
    Psink
    Keymaster

    Hello,

    OK no worries please follow my instruction and add some code in the theme files to fixed the above mentioned issues.

    add this code in the helpers.php file at the end of the file by removing previously defined function and replace with this function

    if you don’t know how to edit theme file follow this screen record
    https://www.awesomescreenshot.com/video/5420858?key=2f0c0c1beca5b43d273d314ec1f4ad90

    and for the btn color add this css in the additional css, as i have done in the end of the screen record

    
    .wp-travel-default-article .wp-travel-explore a{
    	background-color: #000;
    }
    

    change the color code as per your need

    • This reply was modified 4 years, 2 months ago by Psink.
    in reply to: Where is the demo content xml file in Top Event theme? #158335
    Psink
    Keymaster

    Xml files are not allow to attached in the theme, please download it form the below link
    https://drive.google.com/file/d/11mNj4VsgfgcdxG_9hXIlhAMBQT34laL6/view?usp=sharing

    Import it manually in the theme, if have any confusion let us know we will help you to import data

    • This reply was modified 4 years, 2 months ago by Psink.
    in reply to: Trips on regular pages #158287
    Psink
    Keymaster

    Hello Julien,

    Can you please share your site login details through our contact form. We will help you to make changes in the theme

    Here is the link for the contact form
    https://themepalace.com/contact-us

    in reply to: Trips on regular pages #158173
    Psink
    Keymaster

    Hello,

    Can you please check this screen record? Is it something like this
    https://www.awesomescreenshot.com/video/5391680?key=6fc2f795a389b24801e2112001121b1e

    We will release the update by tomorrow, please update the theme

    in reply to: Secondary menue “all, feature, popular” feature #158077
    Psink
    Keymaster

    @BROKERSDIGITALES, Ah ok i got it, actually it’s a tags of the post. Once you add a tag to a post it will automatically show up there

    in reply to: Trips on regular pages #158049
    Psink
    Keymaster

    Hello,

    Can you please explain in more details with some reference screenshot? The url you have provided is the local url that’s not works in others laptop.

    The design is prebuilt built it is not possible to edit the page with any other page builder plugins. Only the possible way is to edit the theme code. You can build the child theme and add the code to override the existing code. OR if you want a small changes for example changing color and font style, you can add a additional css in the theme

    • This reply was modified 4 years, 3 months ago by Psink.
    in reply to: REED MORE #158044
    Psink
    Keymaster

    Hello Diego

    Actually by defaults only first 45 tags will display in the tag list. If you want to display more than 45 tags in the list. You need to add a few line of code in the function.php file.

    
    function magazine_plus_pro_tag_cloud_args( $args ) {
        $args['number'] = 70; // the number of tags you want to display.
        return $args;
    }
    add_filter( 'widget_tag_cloud_args', 'magazine_plus_pro_tag_cloud_args' );
    

    add this code in the function.php file. I recommend you to generate the child theme and add this code in the child theme

    or,
    You can provide us a login details through our contact form, we will add a code for you.

    here is the url for contact form
    https://themepalace.com/contact-us

    in reply to: Transparent Page Background? #158042
    Psink
    Keymaster

    @DEERRICKAGREEN, Yes we can make the background transparent. We need to add a few CSS code in the additional css. Can you please share your site URL? we will provide you a css code Or, you can share your site login through our contact form, we will inspect and add a correct css to fix this issue

    here is the url for contact form
    https://themepalace.com/contact-us

    • This reply was modified 4 years, 3 months ago by Psink.
Viewing 15 posts - 811 through 825 (of 1,555 total)