Forum Replies Created
-
AuthorPosts
-
Hey,
Edit js > avia.js, find this code:
// decreases header size when user scrolls down
avia_header_size();Replace it with:
// decreases header size when user scrolls down
//avia_header_size();Remove browser cache the reload the page.
Regards,
Ismael
Hey,
You can decrease the content padding:
.content, .sidebar {
padding-top: 5px;
padding-bottom: 5px;
}Regards,
Ismael
Hey,
Please switch the Advance Layout Editor to debug mode. This way, you’ll be able to see the actual shortcode below the builder.
Edit functions.php, find this code:
if(isset($avia_config['use_child_theme_functions_only'])) return;
Below, add this code:
//set builder mode to debug
add_action('avia_builder_mode', "builder_set_debug");
function builder_set_debug()
{
return "debug";
}You can combine shortcodes like you do on the Default Editor.
You can add this on your custom.css or Quick CSS to decrease the space between the tables:
.pricing-table {
margin: 1px;
}Regards,
Ismael
Hey,
Please give us a link to your website and a screenshot on how you want it to look like. Maybe, we can help you fix it.
Regards,
Ismael
Hey,
Please use this:
@media only screen and (max-width: 767px) {
.image-overlay.overlay-type-video {
display: none !important;
.mejs-overlay-button {
display: none !important;
}
}Remove browser cache the reload the page. :)
Regards,
Ismael
Hi,
Please go to Settings > Reading > select a page for “Front page displays” > A static page (select below). Select home page for “Front page:” and your Blog page as “Posts page:”
Regards,
Ismael
Hi,
Can you please post a screenshot of what you want to do? I’m sorry but it is a bit unclear. Please post a question in german, I’ll tag Dude.
Regards,
Ismael
Hey,
Please add this on your custom.css or Quick CSS:
.avia-slideshow-gallery .avia-slideshow-inner li a {
pointer-events: none;
}Regards,
Ismael
Hey,
You can add this on your custom.css or Quick CSS:
.breadcrumb.breadcrumbs.avia-breadcrumbs {
display: none;
}Regards,
Ismael
Hi,
Is this a plugin? I’m sorry but you need to hire a freelance developer to sync the plugin to the contact form.
Regards,
Ismael
August 21, 2013 at 2:32 am in reply to: how to add smal text with graphic icon in footer navigation #135204Hey,
You can find this code:
<span class='copyright'><?php echo $copyright . $kriesi_at_backlink; ?></span>
Below, add the text and image:
<span class='graphic-text'><img src="IMAGE URL HERE"></span>
Add this on your custom.css or Quick CSS:
.graphic-text {
float: right;
}Regards,
Ismael
Hi,
If you added the images using this:
<img src="IMAGE URL HERE" width="" height="">
You can remove the width and height attributes.
Please add this on your custom.css or Quick CSS:
img {
max-width: 100%;
max-height: 100%;
}Regards,
Ismael
Hi,
Can you give us a link to the page with the layerslider? You can add a special class selector for each layers. Go to Attributes panel > Classes, add a class called “layerslider-open-sans” for example. Save changes. Go to custom.css or Quick CSS, add this code:
.layerslider-open-sans {
font-family: 'Open Sans', 'HelveticaNeue', 'Helvetica Neue', Helvetica, Arial, sans-serif !important;
}Regards,
Ismael
Hey,
1.) Yes, it will override the old theme files.
2.) You can use this:
.avia-caption-content h3 {
line-height: 30px;
}Regards,
Ismael
August 21, 2013 at 1:43 am in reply to: How create images with exactly square corners (no rounding)? #136251Hey,
You can use this:
.small-preview {
border-radius: 0;
}
.related_posts img, .related_posts a {
border-radius: 0;
}Regards,
Ismael
Hi,
Set the the layer to transition in from Left to right with a long duration then under Style > Layout & Positions > Left > set it to 120%. It will move from left to the right edge of the screen.
Regards,
Ismael
Hi,
Please give us a link to the website. Did you install any plugins prior to this issue? Please deactivate them.
Regards,
Ismael
Hey,
Please add this on your custom.css or Quick CSS
.your-button {
display: block;
width: 100%;
height: 100px;
background: red;
position: absolute;
bottom: 0;
z-index: 99999;
}Or you can do this to create a fixed area:
.your-button {
display: block;
width: 100%;
height: 100px;
background: red;
position: fixed;
bottom: 0;
z-index: 99999;
}Beer sounds good. :)
Regards,
Ismael
Hi,
If you are talking about the main title, you can use this on your custom.css or Quick CSS:
.title_container .main-title {
margin: 0;
font-size: 30px;
position: relative;
z-index: 2;
min-height: 36px;
line-height: 2.3em;
top: 0;
font-weight: 400;
}Table css can be found on css > base.css > #Table.
Regards,
Ismael
August 21, 2013 at 12:31 am in reply to: Portfolio Thumbs not Loading Until Scrolling to Bottom of Page #136549Hey,
Please refer to this link: https://kriesi.at/support/topic/scrolling-to-bottom-before-gallery-loads
Make sure that you only change the necessary lines. Remove browser cache then reload the page.
Regards,
Ismael
Hey,
That is weird. I can’t reproduce this on my end. Please give us a link to your website. What is the version of Safari? And your operating system?
Regards,
Ismael
Hey,
You didn’t close the li tag.
<h3>Heading</h3>
[av_hr class='default' height='5' shadow='no-shadow' position='center']
<ul>
<li style="list-style-type: square;">blah blah blah.</li>
<li style="list-style-type: square;">blah blah blah.</li>
<li style="list-style-type: square;">blah blah blah.</li>
</ul>Regards,
Ismael
-
AuthorPosts