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

  • 6 years, 6 months ago Mirela
    Participant
    in reply to: Link Style Not Working in Bulleted Text

    Hello,

    this is a duplicate topic. I already replied to you here: https://support.codeless.co/?topic=link-style-not-working-in-bulleted-text

    Please keep up with the previous ticket.

    Best regards!

    6 years, 6 months ago Mirela
    Participant
    in reply to: Link Style Not Working in Bulleted Text

    Hello,

    Please add this css into your Custom Css box in General Options:

    li a {
        color: #0094c3 !important;
    }

    Best regards!

    6 years, 6 months ago Mirela
    Participant
    in reply to: Featured Image Caption

    Hello,

    First of all, you have a very old theme version. You need to update first, theme and then all it’s included plugins.
    See these tickets for more details:

    Second, the captions are not set up to show in theme. Just the Alt text for SEO. This is the decision of the developers.

    Best regards!

    6 years, 6 months ago Mirela
    Participant
    in reply to: WP Bakery not updating

    Hello,

    Yes, the difference in the plugin’s version (6.0.3 to 6.0.5) is not too big, meaning the current version is not too much outdated and not very much changes are done to the plugin.

    However, we do keep track of the plugin releases and if some serious change had been made, we would have updated the included version too! (*it’s an Envato requirement that themes do not have any issue with any of the included plugins when uploaded for download from the developers).

    If you have experienced any issue while working with WP Bakery, let us know so we can check and include any necessary fix in the next theme update.

    Best regards!

    6 years, 6 months ago Mirela
    Participant
    in reply to: Header

    Hello,

    I changed the position of the controls by customizing it’s css. Please clear cache and try again.

    I already tested it and i was able to click on the control button of “icon text” element in the header.

    Best regards!

    6 years, 6 months ago Mirela
    Participant
    in reply to: Background

    Hello,

    The top row has “Full height Row” options set ON. This affects the content layout in mobile, by forcing the row content to stay in one line and centered. I added this css to customize it:

    @media (max-width: 767px){
    .cl-row .row.cl_row-flex {
        display: inline-block;
    }}

    Please check the site and see the difference.

    Best regards!

    • This reply was modified 6 years, 6 months ago by Mirela.
    6 years, 6 months ago Mirela
    Participant
    in reply to: Font change after Domain transfer

    Hello,

    There is a cross-origin issue on your site. Meaning, your site is set to access all links on HTTPS, but some of them are in HTTP. This leads to some links not being pulled. Part of them is the fonts. See screenshot: https://ibb.co/bJ7gh3H

    Try this out first: go to WordPress Settings > General, make sure both “WordPress Address (URL)” and “Site Address (URL)” links are in HTTPS.
    Then add this in your .htaccess file:

    <IfModule mod_headers.c>
      <FilesMatch "\.(ttf|ttc|otf|eot|woff|woff2|font.css|css|js)$">
        Header set Access-Control-Allow-Origin "*"
      </FilesMatch>
    </IfModule>

    Ask your host for more detailed help regarding this.

    Best regards!

    6 years, 6 months ago Mirela
    Participant
    in reply to: Disable Google Fonts

    Hello,

    Please go to file functions.php and find this block:

    /**
     * List Google Fonts
     * @since 1.0.0
      */
    function codeless_get_google_fonts(){
        $return = array('theme_default' => 'Theme Default');
    
        $google_fonts   = Kirki_Fonts::get_google_fonts();
        $standard_fonts = Kirki_Fonts::get_standard_fonts();
    
        $google_fonts = array_combine(array_keys($google_fonts), array_keys($google_fonts));
        $standard_fonts = array_combine(array_keys($standard_fonts), array_keys($standard_fonts));
        $return = array_merge($return, $google_fonts, $standard_fonts);
    
        return $return;
    } 
    

    Edit out to this:

    /**
     * List Google Fonts
     * @since 1.0.0
      */
    function codeless_get_google_fonts(){
        $return = array('theme_default' => 'Theme Default');
      
        $standard_fonts = Kirki_Fonts::get_standard_fonts();
    
        $standard_fonts = array_combine(array_keys($standard_fonts), array_keys($standard_fonts));
        $return = array_merge($return, $standard_fonts);
    
        return $return;
    } 

    Let us know.
    Best regards!

    6 years, 6 months ago Mirela
    Participant
    in reply to: Folie – Products Gallery doesn\'t load

    Hello,

    Please update your WordPress first, then reset permalinks. If the issue persists, add some wp credentials in a private reply.
    So we can give it a closer look.

    Best regards!

    6 years, 6 months ago Mirela
    Participant
    in reply to: Background

    Hello,

    The mobile layout is different from a desktop. By default, the columns take 100% of the width in order to make elements more visible in the small screen.
    Sorry, but changing it is personal customization and it’s not included in support.

    I suggest you hire a designer in case you intend to make any changes to the default layout of the theme.

    Best regards!

    6 years, 6 months ago Mirela
    Participant
    in reply to: Header
    This reply has been marked as private.
    6 years, 6 months ago Mirela
    Participant
    in reply to: Background

    Hello,

    Set the margin of the inner row in a negative value. So it comes up.
    Screenshot: https://ibb.co/6H8SVtk

    Best regards!

    6 years, 6 months ago Mirela
    Participant
    in reply to: Revolution Slider Error: Slider with alias agency not found | Tower

    Hello,

    You need to import these zip files in Revolution slider > Import option. Then back in the page’s options, go to Page slider > Select Slider. Select the slider you want to use.

    See screenshots: https://ibb.co/q7dc8gx
    https://ibb.co/JtDgz14

    Best regards!

    6 years, 6 months ago Mirela
    Participant
    in reply to: Tower theme portfolio items broken

    Hello,

    That is the structure of the filter bar. It is independent from pagination. The filter bar affects only the items visible on the current page.
    So if you are on page 1 and select a category, for example, “Pintura americana”, then only the images of that category that are present on page 1, will show.

    If you are on page 2, when selecting a category, only the images that are on page 2 and of that category will show. Not the others in other pages.

    Let us know if you have any questions.
    Best regards!

    6 years, 6 months ago Mirela
    Participant
    in reply to: Header

    Hello,

    Open site’s settings from the Customizer (Appearance > Customize). Then hover over the top bar with your mouse. Upon each element, the icon to edit the element will appear. Click on it to change the element or delete it.

    It’s the same as adding any other element in page’s body.
    See screenshot: https://ibb.co/LPNHQ3d

    Best regards!

Viewing 15 posts - 331 through 345 (of 12,542 total)
← 1 2 3 … 22 23 24 … 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