Forum Replies Created
-
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!
in reply to: Link Style Not Working in Bulleted TextHello,
Please add this css into your Custom Css box in General Options:
li a { color: #0094c3 !important; }Best regards!
in reply to: Featured Image CaptionHello,
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!
in reply to: WP Bakery not updatingHello,
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!
in reply to: BackgroundHello,
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.
in reply to: Font change after Domain transferHello,
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!
in reply to: Disable Google FontsHello,
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!in reply to: Folie – Products Gallery doesn\'t loadHello,
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!
in reply to: BackgroundHello,
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!
in reply to: BackgroundHello,
Set the margin of the inner row in a negative value. So it comes up.
Screenshot: https://ibb.co/6H8SVtkBest regards!
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/JtDgz14Best regards!
in reply to: Tower theme portfolio items brokenHello,
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!in reply to: HeaderHello,
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/LPNHQ3dBest regards!
-
This reply was modified 6 years, 6 months ago by