Forum Replies Created
-
AuthorPosts
-
Hi!
You can add this on your custom.css or Quick CSS:
ol, ul { list-style: disk; }
Best regards,
IsmaelHi!
Please add this on your custom.css or Quick CSS:
.logo img { image-rendering: auto; }
Remove browser cache then reload the page.
Best regards,
IsmaelHi!
The background doesn’t look blurred on mobile devices.
http://responsinator.com/?url=http%3A%2F%2Fwesternstarbutter.staging.safecom.com.au
Best regards,
IsmaelHi!
Add the Image element then set the “Image Link?” to “Set manually”. Add the youtube video. It will open the video on lightbox.
Cheers!
IsmaelHi pgentile1!d
You can try this plugin: http://wordpress.org/plugins/wp-mobile-edition/
You can select a subdomain for your mobile audiences.
Regards,
IsmaelNovember 12, 2013 at 2:03 am in reply to: Header in different colors and portfolio image size #187060Hey!
You can add this on your custom.css or Quick CSS:
div .logo { position: relative; } .main_menu { clear: both; position: relative; }
Cheers!
IsmaelHi totofunk!
You can add this on your custom.css or Quick CSS:
.grid-image.avia-hover-fx { display: none; }
Regards,
IsmaelHey wesleysoccer!
Please add this on your custom.css or Quick CSS:
@media only screen and (max-width: 767px) { .responsive #header .main_menu ul, .responsive #header .main_menu ul { display: block !important; position: absolute; background: none; top: -100px; right: 0; } .responsive #header .main_menu ul li { display: none; } .responsive #header .main_menu ul li:last-child { display: block !important; } }
Best regards,
IsmaelHey!
Yes, you can use the Widget Logic plugin. You can also utilize the custom widget. Create a custom widget without any widgets then use it on pages that you don’t want to have a sidebar.
Best regards,
IsmaelNovember 12, 2013 at 1:43 am in reply to: Adapt phone info/small info text header section to look like social media header #187052Hi!
You can use this instead:
.social_header .phone-info span { padding: 10px 10px 10px 10px; margin: 10px 0px 10px 0px; background: blue; } .social_header .phone-info span:hover { background: red; }
Cheers!
IsmaelHi gianmarizzi!
Please watch this video: https://vimeo.com/channels/aviathemes/67651241
Regards,
IsmaelNovember 12, 2013 at 1:27 am in reply to: logo size different in safari and firefox. How to make it standard? #187044Hey!
What screen resolution are you testing this with? You can add this on your custom.css or Quick CSS to prevent the menus from overlapping the logo on iPad or mobile view:
@media only screen and (min-width: 768px) and (max-width: 989px) { .main_menu ul:first-child > li > a { padding: 0 10px !important; font-size: 12px; } }
Cheers!
IsmaelHi erostad!
You can add this on your custom.css or Quick CSS:
@media only screen and (max-width: 767px) { .responsive #header .main_menu ul, .responsive #header .main_menu ul { display: block !important; position: absolute; background: none; top: -100px; right: 0; } .responsive #header .main_menu ul li { display: none; } .responsive #header .main_menu ul li:last-child { display: block !important; } }
Best regards,
IsmaelHey!
Have you tried changing the “Size Settings” a few times? Select the option that works. What is the “Size Settings” that you have right now?
Cheers!
IsmaelNovember 12, 2013 at 1:07 am in reply to: Easyslider: Hide the small yellow mouseover box displaying the filename #187032Hey!
Did you try the second solution? You can use this on custom.css or Quick CSS to remove the caption and title:
.avia-slideshow .avia-caption { display: none; }
Cheers!
IsmaelNovember 10, 2013 at 3:27 am in reply to: How can I set Enfold to swedish using Code Styling Localization? #186552Hey idespiran!
Where are you going to use the images? Slider? Blog posts? You can find the image sizes on functions.php, find this code:
$avia_config['imgSize']['widget'] = array('width'=>36, 'height'=>36); // small preview pics eg sidebar news $avia_config['imgSize']['square'] = array('width'=>180, 'height'=>180); // small image for blogs $avia_config['imgSize']['featured'] = array('width'=>1500, 'height'=>430 ); // images for fullsize pages and fullsize slider $avia_config['imgSize']['extra_large'] = array('width'=>1500, 'height'=>1500 , 'crop' => false); // images for fullscrren slider $avia_config['imgSize']['portfolio'] = array('width'=>495, 'height'=>400 ); // images for portfolio entries (2,3 column) $avia_config['imgSize']['portfolio_small'] = array('width'=>260, 'height'=>185 ); // images for portfolio 4 columns $avia_config['imgSize']['gallery'] = array('width'=>710, 'height'=>575 ); // images for portfolio entries (2,3 column) $avia_config['imgSize']['masonry'] = array('width'=>705, 'height'=>705 , 'crop' => false); // images for fullscreen masonry $avia_config['imgSize']['entry_with_sidebar'] = array('width'=>710, 'height'=>270); // big images for blog and page entries $avia_config['imgSize']['entry_without_sidebar']= array('width'=>1030, 'height'=>360 ); // images for fullsize pages and fullsize slider //overwrite blog and fullwidth image on extra large layouts if(avia_get_option('responsive_layout') == "responsive responsive_large") { $avia_config['imgSize']['gallery'] = array('width'=>845, 'height'=>684 ); // images for portfolio entries (2,3 column) $avia_config['imgSize']['entry_with_sidebar'] = array('width'=>845, 'height'=>321); // big images for blog and page entries $avia_config['imgSize']['entry_without_sidebar']= array('width'=>1210, 'height'=>423 ); // images for fullsize pages and fullsize slider }
You can edit wp-config.php, find this code:
define('WPLANG', '');
Replace it with:
define('WPLANG', 'sv_SE');
You can use this plugin to translate the strings manually. http://wordpress.org/plugins/codestyling-localization/
Cheers!
IsmaelHi!
The code should work:
.main_menu ul:first-child > li > a { padding: 0 12px !important; font-size: 15px; }
Please remove browser cache then reload the page a few times. Don’t forget to “Save Changes”.
Regards,
IsmaelNovember 10, 2013 at 3:12 am in reply to: Easyslider: Hide the small yellow mouseover box displaying the filename #186549Hey 10-der!
Browsers render the title attribute differently. We really don’t have any control over them. You can edit js > avia.js, find this code on line 5-6:
$(document).ready(function() {
Add this code below:
$(".avia-slideshow li img").attr('title', '');
This is not a solid solution but it should work on a few browsers. Remove browser cache then reload the page a few times. You can also edit config-templatebuilder > avia-shortcodes > slideshow.php, find this code on line 486:
$linktitle = trim($slide->post_title) ? esc_attr($slide->post_title) : "";
Replace it with:
//$linktitle = trim($slide->post_title) ? esc_attr($slide->post_title) : "";
Remove browser cache then reload the page.
Best regards,
IsmaelHi!t
Yes, it will appear once you install a child theme. It is a blue button on Enfold > Theme Options.
Regards,
IsmaelHey musklick!
I’m not sure if it is possible. Try to add the ?rel=0&showinfo=0 at the end of the youtube url. Can you please post a link to your website with the video?
Best regards,
IsmaelHey!
The logo looks fine on Firefox 24.0 Windows 7. What OS are you testing this with? Can you please remove the browser cache then reload it again? This is the screenshot of your logo on Firefox.
Regards,
IsmaelHi VelvetStarter!
You didn’t provide a link. If I am not mistaken, you want to remove the header title with breadcrumbs? You can edit the page, look for Layout > Header > select “Don’t display the header”.
Regards,
IsmaelHey!
Please use this on your custom.css or Quick CSS:
@media only screen and (min-width: 769px) and (max-width: 1250px) { .logo img { width: 180px !important; margin-top: 10px; } .main_menu ul:first-child > li > a { font-weight: 600; font-size: 11px; } }
Cheers!
IsmaelHey!
Please use this:
.product_title.entry-title { font-size: 12px !important; }
Remove browser cache then reload the page.
Cheers!
IsmaelHey apweb!
You can select the logo size after uploading the logo image and before you click the “Use this image as logo”. Add this on your custom.css or Quick CSS to move the logo horizontally:
.logo.bg-logo { left: 30%; }
Can you please post a screenshot of what you’re trying to do?
Cheers!
IsmaelHey fjrichart!
You can edit header.php, find this code:
echo avia_logo(AVIA_BASE_URL.'images/layout/logo.png', false, 'strong');
Below, you can place a banner, image or anything you want:
echo "<div class='header-right'>CONTENT HERE</div>";
Regards,
IsmaelHey seelyjen!
You can add this on your custom.css or Quick CSS:
#top .fullsize .template-blog .post .entry-content > * { text-align: left; }
You can use this to modify the meta info:
.post-meta-infos { font-size: 10px; }
Regards,
IsmaelHi Crippy!
Where are you trying to insert the code? Can you please post the code here? You can insert it on a Text Block then switch to Text or HTML editor. If it doesn’t contain any php codes, it should work. Please use this plugin: http://wordpress.org/plugins/insert-javascript-css/
Regards,
Ismael -
AuthorPosts