Forum Replies Created

Viewing 40 posts - 1,121 through 1,160 (of 2,990 total)
  • Author
  • in reply to: Styling the search form #153728
     Radu
    Moderator

    TRy using next instead of : .page-id-7504 .kleo-search-form #searchform .input-lg::placeholder {color:#fff;}

    COPY CODE
    
    .kleo-search-form #searchform .input-lg::-webkit-input-placeholder { /* Safari, Chrome and Opera */
      color: #fffff !important;
    }
     
    .kleo-search-form #searchform .input-lg:-moz-placeholder { /* Firefox 18- */
      color: #fffff;
    }
     
    .kleo-search-form #searchform .input-lg::-moz-placeholder { /* Firefox 19+ */
      color: #fffff !important;
    }
     
    .kleo-search-form #searchform .input-lg:-ms-input-placeholder { /* IE 10+ */
      color: #fffff !important;
    }
     
    .kleo-search-form #searchform .input-lg::-ms-input-placeholder { /* Edge */
      color: #fffff;
    }
     
    .kleo-search-form #searchform .input-lg:placeholder-shown { /* Standard one last! */
      color: #fffff !important;
    }
    
    .kleo-search-form #searchform .input-lg:placeholder-shown { /* Standard one last! */
      color: #fffff !important;
    }
    
    .kleo-search-form #searchform .input-lg::-webkit-input-placeholder { /* Safari, Chrome and Opera */
      color: #fffff !important;
    }
     
    .kleo-search-form #searchform .input-lg:-moz-placeholder { /* Firefox 18- */
      color: #fffff;
    }
    

    Cheers
    R.

    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution
    in reply to: Site Activity, Sidebar Avatar, Notifications #153717
     Radu
    Moderator
    Not marked as solution
    in reply to: Adsense Plugin that works with Paid Membership Pro? #153715
     Radu
    Moderator

    Hi,

    This conditional tag it works make sure to not making something wrong

    COPY CODE
    
    //1,2 represents id's of packages that you want to see your message
     
    if(pmpro_hasMembershipLevel(array(1,2), get_current_user_id())){
        echo 'banner code'
    ;}
    }
    

    Cheers
    R.

    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution
    in reply to: Sliders disabled via CSS on responsive screen sizes #153706
     Radu
    Moderator

    MAke sure to not have this on in wp-admin -> revolution slider -> choose your slider

    If that it’s ok

    Add this CSS to wp-admin -> theme options -> stylion options -> quick CSS

    COPY CODE
    
    
    @media(max-width:767px) {
    	.rev_slider_wrapper { display: block !important; }
    }
    

    Cheers
    R.

    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution
     Radu
    Moderator

    Hi,

    1. This is not possible by default this it’s something cusotm and you should a hire a developer to can implement this.

    2.

    3.

    4. Try to search for that string using logo in rtMedia plugin.

    5. It means that the current install it;s multisite one / https://codex.wordpress.org/Create_A_Network#Step_2:_Allow_Multisite

    6. I cannot see the string in english on your site / http://seventhqueen.com/public-files/radu/Zupa_krem_paprykowo-pomidorowa__Razem_na_diecie__Grupa_wsparcia__2017-02-21_15-44-58.png

    7. Use this css

    COPY CODE
    
    @-webkit-keyframes load7 {
        0%,
        80%,
        100% {
          box-shadow: 0 2.5em 0 -1.3em #000;
        }
        40% {
          box-shadow: 0 2.5em 0 0 #000;
        }
      }
      @keyframes load7 {
        0%,
        80%,
        100% {
          box-shadow: 0 2.5em 0 -1.3em #000;
        }
        40% {
          box-shadow: 0 2.5em 0 0 #000;
        }
      }
    

    For the second ticket can you provide the FTP details to can test the solution live?

    Cheers
    R.

    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution
    in reply to: Portfolio-Category #153553
     Radu
    Moderator
    Not marked as solution
     Radu
    Moderator

    Hi,

    You can do that using this function

    COPY CODE
    
    
    if ( ! function_exists( 'kleo_search_menu_item' ) ) {
        /**
         * Add search to menu
         *
         * @param string $items
         * @param object $args
         *
         * @return string
         */
        function kleo_search_menu_item( $items, $args ) {
            if ( sq_option( 'ajax_search', 1 ) == 'logged_in' && ! is_user_logged_in() ) {
                return $items;
            }
    
            $location = sq_option( 'menu_search_location', 'primary' );
    
            if ( $args->theme_location == 'top' ) {
                $form = kleo_get_search_menu_item();
                $items .= '<li id="nav-menu-item-search" class="menu-item kleo-search-nav">' . $form . '</li>';
            }
    
            return $items;
        }
    }
    

    And this CSS

    COPY CODE
    
    @media(max-width:991px){
        .top-menu  #ajax_search_container {padding:0 10px;}
    }
    

    The function needs to be pasted in wp-content/themes/kleo-child/functions.php

    The CSS will be added to wp-admin -> theme options -> general settings -> quick CSS

    NOTE : Child theme needs to be installed and activated.

    Cheers
    R.

    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution
    in reply to: Styling the search form #153380
     Radu
    Moderator

    Hi,

    For the directory page use this CSS

    COPY CODE
    
    .page-id-7504 .kleo-search-form #searchform .input-lg {background-color:#07da00;color:#003300;}
    

    Using this code will stops to search to changes the opacity when it;s out of focus

    COPY CODE
    
    .kleo-search-form #searchform .input-lg {
        opacity: 1 !important;
    }
    

    Cheers
    R.

    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution
    in reply to: Bug issue from Grid masonry columns rows setting #153377
     Radu
    Moderator

    Hi,

    I see that,

    Add this CSS

    COPY CODE
    
    
    @media(min-width:992px;){
    .responsive-cols.per-row-5 > * {width:19.9%;}
    }
    
    

    If this will behave the same use this instead

    COPY CODE
    
    
    @media(min-width:992px;){
    .responsive-cols.per-row-5 > * {width:19.8%;}
    }
    
    

    The CSS will be added to wp-admin -> theme options -> general settings -> quick CSS

    NOTE : Child theme needs to be installed and activated.

    Let me know

    Cheers
    R.

    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution
    in reply to: Blog title + author archive + blog post margins #153369
     Radu
    Moderator

    Hi,

    1.The single option for title position it’s under wp-admin -> theme options -> Layout Options -> page title location.

    2. You will have to paste the code from pastebin to wp-content/themes/kleo-child/functions.php

    http://pastebin.com/raw/c1q23JkE

    This will generate default wp author archive instead of buddypress profile.

    3. You will have to use a css like this

    COPY CODE
    
    .post-template-default.single .kleo-page .template-page {
        max-width: 800px !important;
        margin: 0 auto;
    }
    

    The CSS will be added to wp-admin -> theme options -> general settings -> quick CSS

    NOTE : Child theme needs to be installed and activated.
    Cheers
    R.

    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution
     Radu
    Moderator
    Not marked as solution
    in reply to: header button css #152997
     Radu
    Moderator
    Not marked as solution
    in reply to: Styling the search form #152752
     Radu
    Moderator

    Hi,

    Use this CSS selector

    COPY CODE
    
    .home .kleo-search-form #searchform .input-lg {
        opacity: 1 !important;
    }
    

    The CSS will be added to wp-admin -> theme options -> general settings -> quick CSS

    Cheers
    R.

    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution
    in reply to: Transparent drop down menu color #152447
     Radu
    Moderator

    Hi again,

    I understand your point of view, you are right.

    Please attach in a private reply your current version of ubermenu so wen can test the behavior using two menus locally.

    Sorry for the bad experience, we try to make every client happy.

    Here are the CSS selectors that helps you to achieve the submenu background white and links color black and also the border a gray color.

    COPY CODE
    
    @media (min-width: 992px) {
    
    .navbar-transparent .navbar-nav > li > .dropdown-menu, .navbar-transparent .navbar-nav > li > .dropdown-menu .dropdown-menu {
        background: #fff !important;
        }
    
    .navbar-transparent .navbar-nav > li > .dropdown-menu li, .navbar-transparent .navbar-nav > li > .dropdown-menu .dropdown-menu li {
        border-bottom-color: #dddddd !important;
        }
    
        .navbar-transparent .navbar-nav .dropdown-menu li a {
            color: #333 !important;
        }
    }
    @media (max-width: 992px) {
        .navbar-transparent .navbar-nav > li > .dropdown-menu, .navbar-transparent .navbar-nav > li > .dropdown-menu .dropdown-menu {
            background: initial !important;
        }
    
        .navbar-transparent .navbar-nav .dropdown-menu li a {
            color: #FFF !important;
         }
    }
    

    You can copy the CSS directly from here : https://gist.githubusercontent.com/sqcodes/41718c9612c728a78776f7174c677d3c/raw/5071dbb999c28a90ee62c61dcfc8b5c86d39b087/.css

    And the submenu will look like this

    I hope you will change your mind on our support and rating after we solve this kind of issue, maybe this makes you happy.

    Cheers
    R.

    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution
    in reply to: Transparent drop down menu color #152111
     Radu
    Moderator

    Hi,

    Please add this css rule to wp-admin -> theme options -> general settings -> quick css

    COPY CODE
    
    @media(max-width:991px){
    a.ubermenu-responsive-toggle.ubermenu-loc-primary {
        margin: 20px 0;
        padding: 20px;
    }
    }
    

    Let me know

    Cheers
    R.

    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution
    in reply to: custom sidebar bug #151881
     Radu
    Moderator

    Replace the previous CSS with this one

    COPY CODE
    
    .sidebar_location .progress {
        height: auto !important;
        border: none !important;
    }
    

    Cheers
    R.

    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution
    in reply to: Cannot change footer color #151743
     Radu
    Moderator

    Hi,

    COPY CODE
    
    .wpb_wrapper {background-color:red;}
    

    Isn’t recommended to apply such as rule on that div because it’s used general multiple times in page.

    Cheers
    R

    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution
    in reply to: custom sidebar bug #151629
     Radu
    Moderator

    Hi,

    Add this css to wp-admin -> theme options -> styliong options -> quick css

    COPY CODE
    
    .sidebar_location .progress {
        height: auto !important;
    }
    

    Cheers
    R

    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution
    in reply to: Cannot change footer color #151555
     Radu
    Moderator

    Nothing,

    The code works maybe are you referring to the socket section

    COPY CODE
    
    div#footer {
        background: red !important;
    }
    div#socket {
        background: green !important;
    }
    

    Try with those selectors

    Cheers
    R.

    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution
    in reply to: activity stream #151547
     Radu
    Moderator

    Hi,

    This isn’t a theme problem… those kinds of queries are not covered by support but use this selector

    COPY CODE
    
    option[value=rtmedia_update]{display:none;}
    

    Cheers
    R.

    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution
    in reply to: Bugs and Issues #151541
     Radu
    Moderator

    Hi

    1. You can do that simply using translation method and to translate string required to *

    2. I don’t understand the scenario.

    3. If those are the correct selectors you should use !important declaration

    COPY CODE
    
    legend {
    font-weight: normal !important;
    }
    .standard-form input[type=text] {
    height: 32px !important;
    width: 70% !important;
    }
    

    The css should be added in wp-admin -> theme options -> styliong options -> quick css

    Cheers
    R.

    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution
    in reply to: Login failure redirects to wp-admin’s login screen. #151375
     Radu
    Moderator
    Not marked as solution
    in reply to: Cannot change footer color #151355
     Radu
    Moderator

    Hi,

    In this reply users says his solution, it doesn’t apply on you ? : https://archived.seventhqueen.com/forums/topic/cannot-change-footer-color/#post-138387

    If not you can change the footer bg color using this selector

    COPY CODE
    
    div#footer {
        background: red !important;
    }
    

    NOTE : Child theme needs to be installed and activated.

    Cheers
    R.

    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution
    in reply to: How can I hide, or remove author from… #151099
     Radu
    Moderator

    Hi,

    What are you asking it seems to be custom, I cannot provide you a custom code with custom restriction rules, I can offer you some hints and guides, if you see any theme problems I’m here to help, for your case if you need to apply that change only for admins you will have to add the previews provided code in this kind of checks

    COPY CODE
    
    if( current_user_can('editor') || current_user_can('administrator') ) {  
        // stuff here for admins or editors
    }
    

    Cheers
    R.

    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution
    in reply to: Issue with iThemes Security Plugin #151059
     Radu
    Moderator
    Not marked as solution
    in reply to: import options within function.php #150949
     Radu
    Moderator

    I see,

    Use this function

    COPY CODE
    
    
    function my_theme_options_php() {
    	$serializedthemedata = '';
    	$aaa = json_decode($serializedthemedata);
    	update_option("kleo_" . KLEO_DOMAIN, $aaa);	
    }
    
    add_action('after_theme_setup', 'my_theme_options_php');
    

    Cheers
    R.

    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution
    in reply to: Buddypress message ajax new reply problems #150925
     Radu
    Moderator

    Hi,

    Add this css to wp-admin -> theme options -> styliong options -> quick css

    COPY CODE
    
    div#message-thread > div:nth-child(even) {
        background: #f4f4f4;
    }
    

    Cheers
    R.

    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution
    in reply to: ajax search #150906
     Radu
    Moderator

    Hi,

    Those are the selectors for title and description of the search results

    COPY CODE
    
    .kleo_ajax_results .ajax_search_content .search_title { font-size:17px !important; color:red !important; }
    .kleo_ajax_results .ajax_search_content .search_excerpt { font-size:14px !important; color:black !important; }
    

    Those will be pasted in child theme style.css or in wp-admin -> theme options -> quick css

    Let me know if you need additonal selectors

    Cheers
    R.

    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution
    in reply to: How can i force the translation? #150786
     Radu
    Moderator

    Add this function to functions.php in child theme

    COPY CODE
    
    /*Make xprofile fields translable fix*/
    if (!function_exists('make_x_profile_fields_name_translable')):
    
        function make_x_profile_fields_name_translable($fieldname) {
            return __($fieldname, 'kleo_framework');
        }
    
        add_filter('bp_get_the_profile_field_name', 'make_x_profile_fields_name_translable');
    
    endif;
    

    It works i’ve tested

    Cheers
    R.

    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution
    in reply to: KLEO – Registration vs Membership Pro #150760
     Radu
    Moderator
    Not marked as solution
    in reply to: KLEO – Registration vs Membership Pro #150758
     Radu
    Moderator
    Not marked as solution
    in reply to: Post Grid Element buggy layout #150609
     Radu
    Moderator

    Hi,

    Try with this instead

    COPY CODE
    
    
    @media(min-width:992px;){
    .responsive-cols.per-row-4>* {width:24% !important;}
    }
    
    

    Cheers
    R.

    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution
    in reply to: Post Grid Element buggy layout #150529
     Radu
    Moderator

    Hi,

    Add this to wp-admin -> theme options -> general settings -> quick css

    COPY CODE
    
    .responsive-cols.per-row-4>* {width:24% !important;}
    

    Let me know
    Cheers
    R

    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution
     Radu
    Moderator

    For the next and prev buttons use this CSS

    COPY CODE
    
    ul.inline-list>li, ul.link-list>li {
        margin-left: 10px !important;
    }
    

    For the second there is no quick solution to achieve that but this an example workaround

    COPY CODE
    
    #xprofile-personal-li {
        background: url(http://toot.org.au/wp-content/uploads/2014/02/proverbs.jpg);
        background-position: center;
        margin-bottom:20px !important;
    }
    
    

    Inspire it from here for the rest of the menu items.
    Cheers
    R.

    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution
    in reply to: Posting Photos In The Status Update/Activity Feed #150341
     Radu
    Moderator

    Hi,

    Just add this css

    COPY CODE
    
    #buddypress #whats-new-form .rtmedia-container { height:initial !important;}
    

    The CSS will be added to wp-admin -> theme options -> general settings -> quick CSS
    Cheers
    R

    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution
    in reply to: Bugs and Issues #150330
     Radu
    Moderator

    Hi,

    You can use this plugin to restrict access to certain users to change wp settings/themes etc…

    Create a new account and assign it a custom role with your desired permissions for that, before using that plugin I recommend you to perform a database backup for any case

    For the footer widget use this css have those inline

    COPY CODE
    
    .widgets-container.sidebar_location #text-6 .textwidget div {
        display: inline-block;
        padding: 0 !important;
        margin: 0 !important;
    }
    

    Cheers
    R.

    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution
    in reply to: Can I change container size? #150214
     Radu
    Moderator

    Hi,

    Try this CSS

    COPY CODE
    
    .kleo-desktop .single.single-post #main-container article {
        max-width: 700px;
        margin: 0 auto;
    }
    

    Let me know if it’s ok

    The CSS will be added to wp-admin -> theme options -> general settings -> quick CSS
    NOTE : Child theme needs to be installed and activated.

    Cheers
    R

    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Ticket solution
    in reply to: Can I change container size? #150147
     Radu
    Moderator

    Hi,

    In what page you want to have that?

    This CSS makes all site pages that are full width limited to specified width

    COPY CODE
    
    .container-full {
        max-width: 1200px;
        margin: 0 auto;
    }
    

    The Css will be added to wp-admin -> theme options -> general settings -> quick css
    Cheers
    R.

    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution
     Radu
    Moderator

    You will have to use

    COPY CODE
    
    function kleo_woo_body_classes_custom($classes = '') {
    	
    	if ( is_tax('subject') || is_tax('serie') ) {
    		$classes[] = 'kleo-shop-cols-' . sq_option( 'woo_shop_columns', '3' );
    	}
    	
    	return $classes;
    	
    }
    add_filter('body_class','kleo_woo_body_classes_custom');
    

    || it’s equal with OR

    Cheers
    R.

    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution
    in reply to: woocommerce modal #150134
     Radu
    Moderator
    Not marked as solution
Viewing 40 posts - 1,121 through 1,160 (of 2,990 total)

Log in with your credentials

Forgot your details?