Forum Replies Created
-
AuthorPosts
-
Hi,
@formateins: Thanks for the tip. I agree with the solution.
@TLinden: Yes, it is possible. You can do @formateins solution. You’ll have to give us a link to the website with the icon boxes. We will help you remove the icons on that specific page.
Regards,
Ismael
Hi,
The content should push the footer. Please try to add more content to push the footer and socket down.
You can’t reduce the margin between your sidebar and the browser edge. It will break the layout.
Regards,
Ismael
Hi,
Upgrade to Enfold 1.7. It will fix the issue.
OR
Edit wp-contentthemesenfoldconfig-templatebuilderavia-shortcodes > postslider.php, find this code
"subtype" => array( __('1 Columns', 'avia_framework' )=>'1',
__('2 Columns', 'avia_framework' )=>'2',
__('3 Columns', 'avia_framework' )=>'3',
__('4 Columns', 'avia_framework' )=>'4',
__('5 Columns', 'avia_framework' )=>'5',
)),The array 1 Columns should be equal to 1.
array( __('1 Columns', 'avia_framework' )=>'1'
Regards,
Ismael
July 11, 2013 at 4:21 am in reply to: Single post fullscreen (without sidebar) not responsive #128830Hi,
Did you try to set the image as your Featured Image? You can use Media Queries to make it responsive.
You can add this on your custom.css or Quick CSS
.avia_image {
width: 100% !important;
height: auto !important;
}Regards,
Ismael
Hi,
First go to the Add this plugin dashboard. Settings > Addthis Share. Fill in the AddThis Profile ID: then login using your Addthis account. Get the Addthis API code on your actual addthis account. Sign in here: https://www.addthis.com/login
<!-- AddThis Button BEGIN -->
<div class="addthis_toolbox addthis_default_style ">
<a class="addthis_button_facebook_like" fb:like:layout="button_count"></a>
<a class="addthis_button_tweet"></a>
<a class="addthis_button_pinterest_pinit"></a>
<a class="addthis_counter addthis_pill_style"></a>
</div>
<script type="text/javascript">var addthis_config = {"data_track_addressbar":true};</script>
<script type="text/javascript" src="//s7.addthis.com/js/300/addthis_widget.js#pubid=ra-51de2d2b7e09a8f5"></script>
<!-- AddThis Button END -->Edit wp-contentthemesenfoldconfig-templatebuilderavia-shortcodes > portfolio.php, find this code.
$output .= "<h2 class='portfolio-preview-title'><a href='{$link}'>".$entry->post_title."</a></h2>";
Below, add the addthis api code with some modifications.
$output .= '<!-- AddThis Button BEGIN -->';
$output .= '<div class="addthis_toolbox addthis_default_style ">';
$output .= '<a class="addthis_button_facebook_like" fb:like:layout="button_count"></a';
$output .= '<a class="addthis_button_tweet"></a>';
$output .= '<a class="addthis_button_pinterest_pinit"></a>';
$output .= '<a class="addthis_counter addthis_pill_style"></a>';
$output .= '</div>';
$output .= '<!-- AddThis Button END -->';After that, open footer.php, find this code
<a href='#top' id='scroll-top-link' class='avia-font-entypo-fontello'></a>
Below, add the addthis javascript code with your unique profile id. It will look something like this.
<script type="text/javascript">var addthis_config = {"data_track_addressbar":true};</script>
<script type="text/javascript" src="//s7.addthis.com/js/300/addthis_widget.js#pubid=ra-51de2d2b7e09a8f5"></script>We got the code from the original API code.
If you successfully did the instructions above, you will have the addthis button below the portfolio title.
Regards,
Ismael
Hi,
Try the following:
Slider Width: 100%
Slider Height: 470
Responsive: Yes
Full-Width Slider: Yes
Responsive under: 1300
Layers Container: 1140
Refrain from using px. Import the dummy data to check how the sliders are made.
Regards,
Ismael
Hi,
Can you give me the info about your google map? I’ll try to recreate it on my end.
Regards,
Ismael
Hi,
You can add something like this on your custom.css or QUick CSS
#header_main {
border-bottom: none;
}Regards,
Ismael
Hi,
@formateins: Thanks for the tip.
@colorit2: You can edit framework > php > class-framework-widgets.php, remove everything then replace with this code: http://pastebin.com/s77nHLeV
Regards,
Ismael
Hi,
First the specify the Slider width to 100% then put something like 1024 on the Layers Container. On the option “Responsive under”, play between 1000-1300.
Regards,
Ismael
Hi,
Yes, you can use the contact form 7 then add the shortcode using the text widget. :)
Cheers,
Ismael
Hi,
Did you try modifying the selector on your custom.css or Quick CSS?
.av-special-heading.meta-heading.blockquote.modern-quote {
margin-top: 0 !important;
}Regards,
Ismael
Hi,
Did you try
<code></code>
instead of the raw shortcode?I think it is possible to wrap shortcodes inside a shortcode. I tested this on my end.
Regards,
Ismael
Hi,
Edit js > avia.js, find this code
if(first_level_items > 8 && !bottom_menu)
{
switchWidth = 989;
header.addClass('mobile_menu_tablet');
}Replace the first_level_items with lesser digit. Something like this
if(first_level_items > 5 && !bottom_menu)
{
switchWidth = 989;
header.addClass('mobile_menu_tablet');
}Can you give us a link to your website?
I’ll tag Devin.
Regards,
Ismael
Hi,
What is the name of the plugin you’re using? Where did you get the code?
Regards,
Ismael
Hi,
For the hover state, I created an icon inside a circle. I think 64×64 is enough for retina display.
Regards,
Ismael
Hi,
You can insert a Color Section element at the very end of page templates. :)
Regards,
Ismael
July 9, 2013 at 3:48 pm in reply to: Remove default sidebar in woocommerce single product page #128680Hi,
You can change the widgets on Appearance > Widgets > Single Product Pages widget area.
Regards,
Ismael
Hi,
The links gave me errors.
You can target a specific page by their unique body id selector. Using Chrome, you can right click the page, Inspect Element. Look for the body class.
We can use page-id-2251 to target the page. For example, if we want to change the header background, we can do something like this on custom.css or Quick CSS:
.page-id-2251 #header_main {
background: red;
}We can use this same technique to target other elements within a specific page.
Regards,
Ismael
Hi,
Look for the Color Section elements below the “About” button and Testimonials.
Regards,
Ismael
Hi,
Create a portfolio item, look for Screen Options. Enable the Avia Layout Builder.
Regards,
Ismael
Hi,
What type of Blog Style do you have?
Please give us a link to your website.
Regards,
Ismael
Hi,
Increase the wordpress php memory limit, see if it fixes the issue.
http://www.dailyblogging.org/wordpress/increase-wordpress-memory-limit/
Regards,
Ismael
Hi,
Increase the php memory limit.
http://www.dailyblogging.org/wordpress/increase-wordpress-memory-limit/
Deactivate plugins, see if it works.
Regards,
Ismael
Hi,
You can try this
.header_color .header_bg {
background-color: rgba(0,0,0,.9);
color: white;
}
.header_color .main_menu ul:first-child > li > a {
color: white;
}
.header_color .main_menu ul:first-child > li.active-parent-item > a {
color: gray;
}Regards,
Ismael
Hi,
You can add this on quick CSS or custom.css
h3 {
color: #441646 !important;
}Regards,
Ismael
July 9, 2013 at 7:19 am in reply to: CSS Animations on Home are not triggered by 'avia_animate_when_almost_visible' #128592 -
AuthorPosts