Codeless
  • Support Home
  • Themes
  • Support
  • WordPress Tutorials
    • How to Start a Blog
    • Best Website Builders
    • Best Small Business Hosting
    • Email Marketing Services
    • Cheap WordPress Hosting
  • Video Tutorials

Community Forums

  • Profile
  • Topics Started
  • Replies Created
  • Favorites

Forum Replies Created

  • 9 years, 6 months ago Mirela
    Participant
    in reply to: Custom sidebar dissapear

    Hello,

    I think you misunderstood how it works. Only the dual sidebar (Left/Right) has the options to select which sidebar will be shown. The other two options, only left side bar and only right sidebar, will take by default the “Sidebar Pages” content.

    Let us know if this is what you are referring to.

    Beset regards!

    9 years, 6 months ago Mirela
    Participant
    in reply to: Import Data/Dummy Data Not working

    Hello,

    Please look for the demo widgets in the Appearance > Widgets > Inactive widgets area (scroll down), see screenshot. Then drag and drop the ones you want to use.
    First set up footer layout (footer column number) in General Options > Footer Options.
    If you want us to help configure site like the demo, just enable the login credentials send above.
    Let us know.

    Best regards!

    9 years, 6 months ago Mirela
    Participant
    in reply to: Active page header – not responsive

    Hello,

    For which screen dimension do you want to change it?
    For mobile, add this code into your custom css box:

    @media (max-width: 480px){
    .header_page.with_subtitle.centered .titles h1 { font-size: 53px;}
    .header_page.with_subtitle.centered .titles h5 { font-size: 23px;}
    }

    Edit the values to your wish.
    Let us know.

    Best regards!

    9 years, 6 months ago Mirela
    Participant
    in reply to: Tower responsive menu – issue displaying on ipad

    Hello,

    I see the mobile menu displays as it should in ipad portrait mode. In ipad landscape, the normal menu is shown. If you want to align the normal menu, please add this code into your custom css box:

    @media (max-width: 1100px) and (min-width: 981px) {
    nav .menu > li {
        margin-right: -5px !important;
        margin-left: -5px !important;
    }
    }

    Result screenshot: https://pho.to/AYRHf

    Or if you want to have the mobile menu here as well, then add this code instead:

    @media (max-width: 1100px) and (min-width: 981px) {
    .mobile_small_menu { display: block;}
    header#header #navigation { display: none;}
    #logo img { padding-left: 64% !important;}
    }

    Result screenshot: https://pho.to/AYRJ8

    Let us know.

    Best regards!

    9 years, 6 months ago Mirela
    Participant
    in reply to: Display Archive and Categories Titles in page header

    Hello,

    Please go to file tower\includes\view\page_header.php and find these lines:

    if($cl_redata['subtitle_bool'])
        $extra_class .= ' with_subtitle'; 
    if($cl_redata['page_header_design_style'] == 'padd')
        $extra_class .= ' with_padding_style';
    ?>

    Replace with these:

    if($cl_redata['subtitle_bool'])
      $extra_class .= ' with_subtitle'; 
    if($cl_redata['page_header_design_style'] == 'padd')
      $extra_class .= ' with_padding_style';
    if(is_category()){
       global $wp_query;
        $cat_obj = $wp_query->get_queried_object();
        $title = $cat_obj->name;
    }
    ?>

    Save changes and refresh.

    Best regards!

    9 years, 6 months ago Mirela
    Participant
    in reply to: Compatibility Issue with VIsual Composer

    Hello,

    You are importing the wrong file. Please unzip the “themeforst-9412083-specular-responsive-multipurpose-business-theme.zip” file first. Inside it you will find these folders: Documentation; Licence; Slider-dummy-data; specular; specular-child;

    Now zip only the ‘specular‘ folder and import this into your wordpress Appearance > Themes > Add new.
    Let us know how it will go.

    Best regards!

    9 years, 6 months ago Mirela
    Participant
    in reply to: Full Screen Image on Top and mobile view

    Hello,

    1-Sorry but i don’t understand. What do you mean by “when VC is active”? Visual Composer plugin must be always active in order for the page elements to display properly.
    In the home page i see you have an empty separator(screenshot). Are you referring to this? The separator is just empty space. If you want to have it more visible, then increase it’s value.

    2-Did you made any changes to theme files? or added some custom css for the Codeless slider?

    3-The portfolio style is “Overlayed” and in this style you only get to see the portfolios item title on mouse hover. What is wrong here?

    4-To change the “project description” and “project details” go to file:
    \includes\view\portfolio\single-container.php
    To remove them, just add this css into your custom css box:

    .portfolio_single h4 {
        display: none;
    }

    Let us know.

    Best regards!

    9 years, 6 months ago Mirela
    Participant
    in reply to: Where is the Support?

    Hello,

    The demo import process has no issue. We have tested it multiple times so it must be something on your side causing it.
    I have already replied to your other topic. Please keep up with the responses there so we do not lose focus of the issue.

    Best regards!

    9 years, 6 months ago Mirela
    Participant
    in reply to: Import Data/Dummy Data Not working

    Hello,

    Please fill in the necessary information on your extra information fields of your profile data (the ftp login). We need to give it a closer look.

    Read this article for more information.

    Note: My apologies for the late reply. We reply to topics based in their arrival time, the oldest first. So since you kept replying to your own topic, it was shifted up. We work from Monday to Friday, 9AM to 5PM (UTC +1:00). Please consider timezone differences too.
    Read more about support policy here:https://support.codeless.co/?page_id=4207

    Best regards!

    9 years, 6 months ago Mirela
    Participant
    in reply to: Media Library Not Loading

    Hello,

    I am glad to know it’s ok now. Thanks for sharing1

    Best regards!

    9 years, 6 months ago Mirela
    Participant
    in reply to: Sub-Menu Disappears

    Hello,

    Please add this code into your custom css box:

    .header_2 nav .menu > li > ul.sub-menu ul.sub-menu {
        top: -10px !important;
    }

    Let us know.

    Best regards!

    9 years, 6 months ago Mirela
    Participant
    in reply to: Want Bigger Logo and Main Menu

    Hello,

    You can change logo size in General Options > Logo Height.
    Or add this css into your custom css box:

    #logo img {
        height: 103px;
        margin-top: -49px;
    }

    Edit menu font style and padding in General Options > Menu Options.

    Let us know.

    Best regards!

    9 years, 6 months ago Mirela
    Participant
    in reply to: Responsive text to much to the side

    Hello,

    Please add this code into your custom css box:

    @media (max-width: 480px) {
    .single-portfolio #content {
        padding-left: 6% !important;
    }
    .single-portfolio .header_page {
        padding-left: 6% !important;
    }
    .single-portfolio .container {
        padding-left: 6% !important;
    }
    }

    Please know that the responsive dimensions are fixed and it is already set up a layout for them. If you keep making the webpage smaller in the desktop browser, at some point it may not be perfect but also that is not actually a device dimension.

    You can send us the wp admin credentials, in order for us to check the site even in coming soon mode.
    Let us know.

    Best regards!

    9 years, 6 months ago Mirela
    Participant
    in reply to: Custom sidebar dissapear

    Hello,

    I made a test (in a test page) in your site and the sidebar is displaying in all versions. Please see screenshot of left sidebar : https://www.clipular.com/c/5418853075255296.png?k=PRpIEk1Vds10oiyCD45BwZeRjAg
    -Right: https://www.clipular.com/c/4859068781166592.png?k=M0AR2WYh9TmqPxkX-2OH9sLGT4c
    -left & right: https://www.clipular.com/c/4966186070835200.png?k=mVMjBuLV0fbRL_fgYeHWcP4f7qo

    I tried in other languages and it all displayed ok. do you still have the issue? Let us know.

    Best regards!

    9 years, 6 months ago Mirela
    Participant
    in reply to: Footer logo cut off on mobile

    Hello,

    I commented out this code from your custom css box:

    @media (max-width: 979px){
    footer .inner .textwidget {
         margin-left: -120px!important; 
    }}

    It’s ok now. Please check and let us know.

    Best regards!

Viewing 15 posts - 6,916 through 6,930 (of 12,542 total)
← 1 2 3 … 461 462 463 … 835 836 837 →

Site Links

  • Support Policy
  • Specular Support Forum
  • Video Tutorials
  • Knowledge Base
  • Guides and Reviews

Useful Articles

  • Build a Website
  • Web Design & Development
  • Hosting
  • WordPress

Login

Log In
Register Lost Password