Forum Replies Created
-
AuthorPosts
-
Hi!
1.) Add this on Quick CSS:
.four.units.single-product-main-image.alpha .images a { pointer-events: none; }2.) You can change the font of the tax rate using this:
.woocommerce-de_price_taxrate { font-size: 11px !important; font-family: Arial; }Best regards,
IsmaelHi!
I’m not sure if this is going to work completely but please remove Yigit’s code then choose Boxed Layout. Add this on Quick CSS:
.home.boxed .container { margin: 0 auto !important; } @media only screen and (min-width: 1340px) { .responsive_large .home.boxed#top { width: 100%; } } .home #wrap_all { margin: 0 auto; } html.html_boxed { background: white; }Regards,
IsmaelHi!
I’m sorry but I don’t think it is possible without major css and theme file rewrite. Please hire a freelance developer to modify the theme for you.
Best regards,
IsmaelHey Tommy!
You can add this on your custom.css or Quick CSS:
.grid-entry .inner-entry { margin-right: 0; }Cheers!
IsmaelHi!
2.) Please give us a link to the actual single portfolio page.
3.) Change the iconlist background using this:
.main_color .avia-icon-list .iconlist_icon { background-color: red; }Best regards,
IsmaelHi!
You can add this on Quick CSS:
#top .menu-item-search-dropdown > a { font-size: 50px; }Cheers!
IsmaelHi medvick!
That is a custom background created by Kriesi. Please hire a freelance developer to replicate the design. You can start with this css code:
#pre-sale-question form { border-radius: 6px; padding: 8px; position: relative; border: 1px #e1e1e1 solid; background: #D1D1D1; background: -moz-repeating-linear-gradient(-45deg, #000 , #000 30px, #fff 30px, #fff 40px, #42A0BD 40px, #42A0BD 70px,#fff 70px, #fff 80px); background: -webkit-repeating-linear-gradient(-45deg, #000 , #000 30px, #fff 30px, #fff 40px, #42A0BD 40px, #42A0BD 70px,#fff 70px, #fff 80px); background: -o-repeating-linear-gradient(-45deg, #000 , #000 30px, #fff 30px, #fff 40px, #42A0BD 40px, #42A0BD 70px,#fff 70px, #fff 80px); background: repeating-linear-gradient(-45deg, #000 , #000 30px, #fff 30px, #fff 40px, #42A0BD 40px, #42A0BD 70px,#fff 70px, #fff 80px); }Best regards,
IsmaelHi!
You can use the theme’s Content Slider element and use it as a random quote slider. Set the Autorotation active? to yes and the Transition to Fade. Where is the yellow background of the plugin coming from? I tried to adjust it but I can’t find where the background is coming from.
Best regards,
IsmaelHi!
You can add this on Quick CSS:
.sidebar_left.sidebar { text-align: left; } #top .sidebar_left .widget_nav_menu ul ul li:before { left: 0; }If you want to change the style of a specific element on a certain page or post, you can use the Google Chrome Inspect Element. Look for the unique css body class.

On the example above, the page’s unique selector is .page-id-2251. We can use it to change the element within that page.
.page-id-2251 .sidebar_left.sidebar { text-align: left; } .page-id-2251 .sidebar_left .widget_nav_menu ul ul li:before { left: 0; }Cheers!
IsmaelHey!
First, go to Appearance > Widgets then create a custom widget area using the “Enfold Custom Widget Area”. After that insert the Enfold Google Maps Widget on the custom widget area that you created. Go to the contact page then insert the Widget Area element. Select the new custom widget area.
Cheers!
IsmaelJanuary 15, 2014 at 7:50 am in reply to: Full width layerslider disappear when using my own template page #209895Hey!
If you’re using the Archive template, edit template-archives.php. Find this code on line 28:
//display the actual post content the_post(); the_content();Cut it then move it below this code on line 12:
global $avia_config, $more; get_header(); echo avia_title();This should place the layer slider outside the twelve units container.
Cheers!
IsmaelHi!
1.) Add this on Quick CSS:
.four.units.single-product-main-image.alpha { overflow: hidden; }2.) Change the price and price per unit font using this:
#top .price span, #top del, #top ins { font-size: 12px; line-height: 24px; }3.) The code above will change it too.
4.) You can change the color of the related products title using this:
.alternate_color .related.products h2 { color: blue; }Cheers!
IsmaelHi milatch!
1.) You can add this on Quick CSS to remove the date and item on Latest Portfolio Widget:
.news-time { display: none !important; }2.) You can change the width of the portfolio featured image using this:
.single-portfolio .page-thumb img { width: 300px; }3.) Use this to change the iconlist icons color:
.iconlist-char { color: red; }Cheers!
IsmaelJanuary 15, 2014 at 7:33 am in reply to: Primary Stretched Layout with pages in boxed layout #209891Hi msmazza!
That is not possible at the moment. You need to manually change the style or css of a specific page and it will take a major css rewrite. Please hire a freelance developer to help you with it. You can visit http://werkpress.com/.
Cheers!
IsmaelHey!
Can you please post a screenshot of what you’re trying to do?
Add this on Quick CSS to make the layer slider container transparent:
.avia-layerslider.main_color { background: transparent !important; }You can also change it to a certain color:
.avia-layerslider.main_color { background: blue !important; }Then add this to decrease the opacity of the first slide background:
#ls-global * div div#layerslider_1 .ls-layer > .ls-bg { opacity: .2 !important; }Cheers!
IsmaelHi erikkIsrael!
Maybe, you’d like to use the lightbox capabilities. You can open an external link or inline content using the plugin. Please refer to this link: http://www.no-margin-for-errors.com/projects/prettyphoto-jquery-lightbox-clone/
Best regards,
IsmaelHi discover_peppermint!
First, adjust the container width using this on Quick CSS:
.container { width: 1260px; }Adjust the grid sizes after, do the math: :)
/* Base Grid */ .container .one.unit, .container .one.units { width: 30px; } .container .two.units { width: 110px; } .container .three.units { width: 190px; } .container .four.units { width: 270px; } .container .five.units { width: 350px; } .container .six.units { width: 430px; } .container .seven.units { width: 510px; } .container .eight.units { width: 590px; } .container .nine.units { width: 670px; } .container .ten.units { width: 750px; } .container .eleven.units { width: 830px; } .container .twelve.units { margin-left: 0; width: 1260px; }Cheers!
IsmaelHi Lissasan!
First thing to do is to deactivate existing plugins that you have. Remove browser cache or test it on another browser, see if the issue persist. You have 8 plugins installed, maybe one of them is causing the issue. Common plugins that cause this issue are SEO plugins, you might want to deactivate one if you have any.
Cheers!
IsmaelHey duttonstuart!
You have a very old version of the theme. There is an added “Theme Update” option for Enfold. It automatically check for updates if there is any. Please download the latest version of Enfold on your themeforest account then update the theme via FTP. Please watch this video by Devin: https://vimeo.com/channels/aviathemes/64927356
You can learn more about the automatic theme update here: http://kriesi.at/documentation/enfold/updating-your-theme-files/
Cheers!
IsmaelHey!
Add this on Quick CSS to move the whole portfolio grid by 10px to the left:
.avia_sortable_active .isotope { margin-left: -10px; } .no_margin.av_one_fourth.first { padding-left: 10px; }Best regards,
IsmaelHey!
I created a new post called “Test” then added a featured image. The featured image and the title takes me to the correct post when clicked. Please recreate the post “Feeding Orphans”, the permalink is incorrect. I’m not sure why but did you manually change the permalink of the post?
This is the post that I created: http://bringingmiracles.com/test/
Regards,
IsmaelHey oliviad!
You can edit includes > loop-search.php, find this code:
echo "<span class='search-result-counter {$counterclass}'>{$post_loop_count}</span>";Replace it with an image icon:
echo "<span class='search-result-counter {$counterclass}'><img src='IMAGE URL HERE'></span>";What do you mean by “- Page Title Here the sentence in which the word appears.”?
Cheers!
IsmaelHi babayard!
Please download the theme again on your themeforest account then upload it via FTP. Watch this video by Devin: https://vimeo.com/channels/aviathemes/64927356
Also, try to update the theme right through the dashboard. Refer to this link: http://kriesi.at/documentation/enfold/updating-your-theme-files/
Best regards,
IsmaelJanuary 15, 2014 at 6:09 am in reply to: Full width layerslider disappear when using my own template page #209864Hi Voilaah!
Can you please give us a link to the website? How did you add the layer slider on the template, with a shortcode?
Regards,
IsmaelHi kkoelling!
Please try to deactivate existing plugins, see if the issue gets fixed. Post the link of the website here so that we can inspect it.
Regards,
IsmaelHey mtmfx!
Yes, that is ok. You can also use the Color Section, add a background image. :)
Regards,
IsmaelHey glozemedia!
How did you move the website? Did you use the WordPress Exporter? We recommend the WP Migrate DB or WP MIGRATE PRO when transferring a website.
Best regards,
Ismael -
AuthorPosts
