Forum Replies Created
-
AuthorPosts
-
Hi,
On Appearance > Menu, give the menu items a special class. If you can’t see it, click Screen Options (top right), look for “Show advanced menu properties”, check “CSS Classes”. You will be able to specify “CSS Classes (optional)” for each menu item.
Regards,
Ismael
Hi,
After uploading the logo, choose the image size before clicking “Use Image as logo”. You can select the Full Size.
Regards,
Ismael
Hi,
I visited your site for the first time and it looks fine. Maybe just a slow internet connection?
Regards,
Ismael
Hi,
I tested this and it seems like you are correct, they are required. Let me tag Kriesi to shed some light on this topic.
Regards,
Ismael
Hi,
<p> tag creates a top and bottom margin. You can add this on your custom.css
p {
margin: 0 0;
}Regards,
Ismael
Hi,
Look for Screen Options > see if Avia Layout Builder is checked.
Try to increase the php memory limit:
http://www.dailyblogging.org/wordpress/increase-wordpress-memory-limit/
Regards,
Ismael
Hi,
This is the actual output for the blockquote use on the page.
<blockquote class="first-quote">Post Formats is a theme feature introduced with Version 3.1. Post Formats can be used by a theme to customize its presentation of a post.</blockquote>
Regards,
Ismael
June 5, 2013 at 5:36 am in reply to: Problem when hover on image alignement with Firefox and Opera Mac #115640Hi,
Please send your login details to ///.
Include the word “Kriesi” on the subject. Add the link of this thread on your email.
Regards,
IsmaelHi,
Enfold 1.5 is available. Please download it on your themeforest account.
Regards,
Ismael
June 5, 2013 at 5:32 am in reply to: How to Increase Font Size and Special Heading Isn't Responsive #122838Hi,
Open includes > helper-post-format.php, then find this code on line 52:
$heading = is_singular() ? "h1" : "h2";
Replace it with
$heading = is_singular() ? "h1" : "h1";
You can change the font size using this:
.entry-content .post-title {
font-size: 30x;
line-height: 1.5em;
}Add the code on your custom.css or Quick CSS.
Regards,
Ismael
Hi,
You can find the theme styles on the CSS folder. In order to modify the theme, you can add CSS modifications on custom.css or your Quick CSS. Try the following:
.inner_sidebar {
margin-left: 20px;
}Regards,
Ismael
Hi,
Do you have any plugins installed? Try to deactivate them.
Please add this on your custom.css
.js_active .grid-image {
opacity: 1;
}Regards,
Ismael
Hi,
Yes, I saw the issue but after I refresh the page a few times, it fixed itself to normal.
Let me tag the rest of the support team.
Regards,
Ismael
Hi,
You can add this on your custom.css or Quick CSS to make the thumbnails square.
#top div .avia-gallery img {
width: 100%;
height: 100%;
}
.avia-gallery-thumb a {
width: 20%;
height: 97px;
}Regards,
Ismael
Hi,
What is the Blog style you’re currently using? Big preview? Small preview?
You can add this on your custom.css
.big-preview.single-big {
display: none;
}
.small-preview {
display: none;
}Regards,
Ismael
Hi,
You can use this code
.current-page-ancestor a > .avia-menu-fx {
visibility: visible;
opacity: 1;
}Regards,
Ismael
Hi,
Yes, it is possible.
<img src="IMAGE URL" style="padding: 7px; border: 1px solid gray;" />
Regards,
Ismael
Hi,
Do you have WordPress 3.5 installed?
Try to increase the php memory limit:
http://www.dailyblogging.org/wordpress/increase-wordpress-memory-limit/
Regards,
Ismael
Hi,
Is it possible to sync the mailchimp subscribe form to the wordpress login function?
Regards,
Ismael
June 4, 2013 at 2:34 am in reply to: Slider is on the left and not everytime in the center/middle #122851Hi,
Go LayerSlider WP > Select the slider > Global Options > Basic > Layers Container. Specify a width in pixel, 1210 for example. This will constrain the elements at the center.
Regards,
Ismael
Hi,
If you are editing page and you use the default editor, the page.php will then be use as the template. You can’t use a custom template then use the Layout Builder at the same time.
Regards,
Ismael
June 4, 2013 at 2:22 am in reply to: How to Increase Font Size and Special Heading Isn't Responsive #122836Hi,
You can edit base.php, look for #Typography section.
You can use Media Queries to target the special heading.
/* All Mobile Sizes (devices and browser) */
@media only screen and (max-width: 767px) {
.av-special-heading h3 {
YOUR STYLE HERE
}
}Regards,
Ismael
Hi,
Just add this on your custom.css
.blog-author.minor-meta {
display: none;
}Open loop-index.php then find this code
if(!empty($cats))
{
echo '<span class="blog-categories minor-meta">'.__('in','avia_framework')." ";
echo $cats;
echo '</span><span class="text-sep">/</span>';
}
echo '<span class="blog-author minor-meta">'.__('by','avia_framework')." ";
the_author_posts_link();
echo '</span>';Replace it with
if(!empty($cats))
{
echo '<span class="blog-categories minor-meta">'.__('in','avia_framework')." ";
echo $cats;
}
echo '<span class="blog-author minor-meta">'.__('by','avia_framework')." ";
the_author_posts_link();
echo '</span>';Regards,
Ismael
Hi,
Can you give us a screenshot? It’s kind hard to find the white line.
Regards,
Ismael
Hi,
I tested this on my end. It works fine. Can you please embed the youtube back? Maybe on a different page with the same layout.
Regards,
Ismael
-
AuthorPosts