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

  • 10 years, 8 months ago Mirela
    Participant
    in reply to: Problem with centered page header style

    Hello,

    Please add this code into your custom css box:

    .page_header_yes .top_wrapper {
      padding-top: 100px !important;
    }

    We will fix this in the next update.

    Best regards!

    10 years, 8 months ago Mirela
    Participant
    in reply to: Staff pictures and links to pages

    Hello,

    Please follow the instruction given in this topic: https://support.codeless.co/?topic=staff-bios , to add a new link to the chain of social icons to connect your staff with a custom page.

    Best regards!

    10 years, 8 months ago Mirela
    Participant
    in reply to: Latest Theme and JSComposer – Animation problems

    Hello,

    GO to column settings -> General -> enable animation, select the animation you want and set the time in ms.
    Maybe the animations has gone due to Visual Composer update.
    Make sure you are running the latest theme version and the latest Visual Composer version.

    Best regards!

    • This reply was modified 10 years, 8 months ago by Ruco.
    10 years, 8 months ago Mirela
    Participant
    in reply to: Read more and links in the excerpts

    Hello,

    Can you please be more specific? In what element are you using the read more? Please send us a link where are you using it, or a screenshot.

    Best regards!

    10 years, 8 months ago Mirela
    Participant
    in reply to: Trouble with images

    Hello,

    The code responsible to register a new image size image is in function codeless_images_sizes():
    add_image_size ( string $name, int $width, int $height, bool|array $crop = false )

    Cropping behavior for the image size is dependent on the value of $crop:

    If false (default), images will be scaled, not cropped.
    If an array in the form of `array( x_crop_position, y_crop_position ):
    x_crop_position accepts ‘left’ ‘center’, or ‘right’`.
    y_crop_position accepts ‘top’, ‘center’, or ‘bottom’. Images will be cropped to the specified dimensions within the defined crop area.
    If true, images will be cropped to the specified dimensions using center positions.

    Example, if you want to scale the images of blog then find this line:
    add_image_size( 'blog', 825, 340, true );
    and replace with this:
    add_image_size( 'blog', 825, 340, array( 'left', 'top') );

    Source file: specular/functions.php (line 145)

    Best regards!

    10 years, 8 months ago Mirela
    Participant
    in reply to: Problems on Mobile Devices

    Hello,

    Thank you for choosing our theme!
    1-Please make sure to have enabled the revolution slider to display in mobile. Find the option in Revolution Slider > slider settings > Layout & Visual > Mobile, set it OFF (screenshot)

    2-I can’t see the images attached, but i assume is a conflict of the menu width, with the top header width in landscape mode.
    Please send us your site’s url so we can give a more precise answer for all the other questions.

    Best regards!

    10 years, 8 months ago Mirela
    Participant
    in reply to: Portfolio entries active header problem

    Hello,

    I fixed it. I edited this code:

    .page_header_yes .top_wrapper{
      padding-top: 100px;
    }

    in your style.css file.
    We will reflect the change in the next update too, so you do not need to worry about later theme updates.

    Best regards!

    10 years, 8 months ago Mirela
    Participant
    in reply to: problem with YOAST SEO plugin

    Hello,

    Sorry that is not yet possible.

    Best regards!

    10 years, 8 months ago Mirela
    Participant
    in reply to: Header – Widgetized Area

    Hello,

    Please go to file tower\includes\register\register_shortcodes.php, find and edit it here.

    Best regards!

    10 years, 8 months ago Mirela
    Participant
    in reply to: Layer Slider WP

    Hello,

    Yes, it does include it. You do not need a purchase code. The theme purchase code is used only to register on this forum. Please install the included Layer slider. You should get a message in your dashboard, requiring you to install plugins. In the required plugin list it is Layer slider too.
    We update plugins to their latest version on each theme update. if you wish to update a plugin before the next theme release, then you will have to buy it.

    Best regards!

    10 years, 8 months ago Mirela
    Participant
    in reply to: Specular theme – how to "holder" links (…/#)

    Hello,

    That is not actually a bug. If you add the “https://” before the link, it will interpret it as a real, autonomous link and will send you to that actual link (blank), if you set it up as only ‘#’ (screenshot), it will associate it with the site’s default url.
    So “https://#” ->blank link; “#“->default site url;
    I hope i was clear enough.
    Let us know for anything.

    Best regards!

    10 years, 8 months ago Mirela
    Participant
    in reply to: Staff pictures and links to pages

    Hello,

    Please edit the file specular\vc_templates\staff.php (for single staff element).
    Find the lines:

    $output .= '<div class="featured_img">';
              $output .= '<img src="'.esc_url($featured).'" alt="">';

    Replace with these:

    $output .= '<div class="featured_img">';
       $output .= '<a href="'.get_permalink().'"><img src="'.esc_url($featured).'" alt=""></a>';

    Please note that this will wok for the staff > Style -> Simple Centered.

    Best regards!

    10 years, 8 months ago Mirela
    Participant
    in reply to: Recent Portfolio Element – Media not displaying

    Hello,

    Please update theme and visual composer to their latest version. Let us know if the issue persists.

    Best regards!

    10 years, 8 months ago Mirela
    Participant
    in reply to: Accordion

    Hello,

    Please add this code into you custom css bxo:

    @media (max-width: 767px){
    .page-id-83 .vc_tta-panels {
        padding-top: 150px;
        margin-left: -422px;
    }}
    @media (max-width: 480px){
    .page-id-83 .vc_tta-panels {
        padding-top: 200px;
        margin-left: -272px;
    }}

    If the issue persists, send us your wp credentials in a private reply. So we can fix them all.

    Best regards!

    10 years, 8 months ago Mirela
    Participant
    in reply to: Accordion

    Hello,

    Sorry for the inconvenience.
    Please add this code into your custom css box:
    1-For the slideshow in homepage:

    @media (max-width:767px){
    .flexslider .slides > li { margin-right: -96% !important;}
    }

    2-For the Tour in Contact page, i don’t see any issue here. Can you please post a screenshot? So i can understand better.

    Best regards!

Viewing 15 posts - 11,206 through 11,220 (of 12,542 total)
← 1 2 3 … 747 748 749 … 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