Forum Replies Created
-
AuthorPosts
-
Hi,
Are you using the Advance Layout Editor > Blog Posts element? If so, look for pagination, select “yes”.
Regards,
Ismael
Hi,
You can hide via css. Add this on your custom.css
.page .page-thumb {
display: none;
}Cheers,
Ismael
Hi,
You can find all of the form styles on base.css
/* #Forms
================================================== */
#top form {
margin-bottom: 20px; }
#top fieldset {
margin-bottom: 20px; }
#top .input-text,
#top input[type="text"],
#top input[type="input"],
#top input[type="password"],
#top input[type="email"],
#top input[type="number"],
#top input[type="url"],
#top input[type="tel"],
#top input[type="search"],
#top textarea,
#top select {
-webkit-appearance: none;
border: 1px solid #e1e1e1;
padding: 8px 6px;
outline: none;
font: 13px "HelveticaNeue", "Helvetica Neue", Helvetica, Arial, sans-serif;
color: #777;
margin: 0;
width: 210px;
max-width: 100%;
display: block;
margin-bottom: 20px;
background: #fff;
-webkit-font-smoothing: antialiased;
border-radius: 0px;
}
#top input[type="text"]:focus,
#top input[type="password"]:focus,
#top input[type="email"]:focus,
#top input[type="number"]:focus,
#top input[type="url"]:focus,
#top input[type="tel"]:focus,
#top input[type="search"]:focus,
#top textarea:focus {
box-shadow: 0px 0px 2px 0px rgba(0,0,0,0.2);
color: #555;
}
#top textarea {
min-height: 60px; line-height:1.5em;}
#top label{
display: block;
font-weight: bold;
font-size: 12px; }
#top legend {
display: block;
font-weight: normal;
font-size: 15px; }
#top select {
width: 220px; }
#top input[type="checkbox"] {
display: inline; }
#top label span,
#top legend span {
font-weight: normal;
font-size: 13px;
color: #444; }
#top textarea{width:100%;}
#top #wrap_all .valid .text_input, #top #wrap_all .valid .text_area{border:1px solid #9AA600;} /*#70A41B*/
#top #wrap_all .error .text_input, #top #wrap_all .error .text_area{border:1px solid #DF653E;}
#top #wrap_all .ajax_alert .text_input, #top #wrap_all .ajax_alert .text_area{border:1px solid #ffb628;}The review button on my end is white and it is crystal clear. Can you give us a link to your website?
Cheers,
Ismael
Hi,
I don’t see anything on this page http://genau.drivott.com/results/.
You should probably seek for support with the plugin developer.
Cheers,
Ismael
Hi,
Yeah, I can see it. Please do the following steps. I believe you have something like this on your editor
<a href="http://localhost/kriesi/enfold/wp-content/uploads/2012/04/2.jpg"><img class="alignleft size-medium wp-image-316" alt="2" src="http://localhost/kriesi/enfold/wp-content/uploads/2012/04/2-300x195.jpg" width="300" height="195" /></a>
Put a class selector on the anchor tag. Something like this
<a class="leftalign-moz-fix" href="http://localhost/kriesi/enfold/wp-content/uploads/2012/04/2.jpg"><img class="alignleft size-medium wp-image-316" alt="2" src="http://localhost/kriesi/enfold/wp-content/uploads/2012/04/2-300x195.jpg" width="300" height="195" /></a>
Now add this on your custom.css
.leftalign-moz-fix {
float: left !important;
}I will tag Kriesi.
Cheers,
Ismael
May 23, 2013 at 3:13 am in reply to: can't get a 1 pt rule on the left of the sidebar container… #120643Hi,
Add this on your custom.css or Quick CSS.
.noborder_tabs.sidebar_tab_left .tab_content {
border-left: 1px solid #E1E1E1;
left: -1px;
}Cheers,
Ismael
Hi,
Edit header.php then find this code
do_action('avia_meta_header');
Below, place this code
do_action('icl_language_selector');
Then add this on your custom.css
#lang_sel a {
border: none;
}
#lang_sel {
right: -60px;
top: -10px;
}
#lang_sel a.lang_sel_sel {
background: url(../img/nav-arrow-down.png)right no-repeat;
color: #444;
}Change the top and right properties to position the switcher.
Cheers,
Ismael
Hi,
Open css > base.css and find this line of codes
.image-overlay{position: absolute; background: #fff; z-index: 500;}
.image-overlay .image-overlay-inside{height:100%; width:100%; position: absolute; left:0; top:0;}
.image-overlay .image-overlay-inside::before{position: absolute; border-radius: 50px; background: #000; height:80px; width:80px; line-height:80px; left:50%; top:50%; margin: -40px 0 0 -40px; z-index: 500; text-align: center; color:#fff;}
.image-overlay .image-overlay-inside::before{content:"E744"; font-family: 'entypo-fontello'; font-size: 18px; font-weight: normal; }
.image-overlay.overlay-type-extern .image-overlay-inside::before{content:"27A6";}
.image-overlay.overlay-type-video .image-overlay-inside::before{content:"25B6";}
#top .hide-inner-overlay .image-overlay-inside{display: none;}You can change the fontello symbols on these lines.
.image-overlay.overlay-type-extern .image-overlay-inside::before{content:"27A6";}
.image-overlay.overlay-type-video .image-overlay-inside::before{content:"25B6";}Something like this
.image-overlay.overlay-type-extern .image-overlay-inside::before{content:"E714";}
.image-overlay.overlay-type-video .image-overlay-inside::before{content:"E714";}Please refer to this link for more entypo fontello symbols.
http://www.entypo.com/characters/
Cheers,
Ismael
Hi,
I see, you can disable them with css. Add this on your custom.css or Quick CSS.
#av_section_2 {
border: none;
}
#av_section_3 {
border: none;
}If you are using chrome, just right click the page, click “Inspect element” then look for the these classes. Do the code above for each of them.
Nice website. :)
Cheers,
Ismael
Hi,
These are the steps you can do.
1.) Clear browser cache then reload the page. Press F5 a few times.
2.) Contact your host to check your file permissions. Maybe it has something to do with that.
3.) Go to Users > Edit your user account > Look for “Disable the visual editor when writing”, it should be unchecked.
4.) You should have WordPress 3.5 or higher.
I’m sorry if you are experiencing this issue. Let me tag Kriesi and the rest of the support team.
Regards,
Ismael
Hi,
I think you have the wrong menu item. It is linked on the archive humor. You need your blog page. Go to Appearance > Menu > Delete the menu item Humor (Humeur) then find your actual blog page with Blog Posts element, change the label then save the menu.
Regards,
Ismael
Hi,
There are no lines when you insert a column under layout elements.
Regards,
Ismael
May 22, 2013 at 7:58 am in reply to: Changing the Tab & Text colour of content Element Tab (Avia layout builder) #120376Hi,
Can you give us a link to your website? The color pink is for the text color of inactive tabs. You this instead
.tab {
background-color: blue;
color: pink !important;
font-size: 20px;
}Cheers,
Ismael
Hi,
Are you using a plugin for your gallery?
You can add this on your custom.css
.gdl-gallery-image {
opacity: 1 !important;
}Cheers,
Ismael
Hi,
Your socket looks fine on mobile view. Can you give us a screenshot?
Regards,
Ismael
Hi,
I’m sorry but I don’t understand. What gallery are talking about? Can you give us a link to the website?
You can set a gallery on your Portfolio Item. Use the Advance Layout Editor then insert the Gallery element.
Regards,
Ismael
Hi,
You need to edit the file via FTP or your cpanel. wp-content/themes/enfold/framework/php/function-set-avia-frontend.php.
Please refer to this link on how to edit file on your cpanel. http://www.siteground.com/tutorials/cpanel/file_manager.htm
This line should
$logo = "<img src=".$logo." alt='' />";
$logo = "<$headline_type class='logo'><a href='".home_url('/')."'>".$logo."$sub</a></$headline_type>";Should be replace with
$logo = "<img src=".$logo." alt='' />";
$logo = "<$headline_type class='logo'><a href='http://www.cgreen.nerium.arealbreakthrough.com'>".$logo."$sub</a></$headline_type>";Cheers,
Ismael
Hi,
Go to LayerSlider WP > Click a slider > Global Settings > Basic > Slider Height > Enter 1000, save changes.
To reduce the socket height, add this on your custom.css
#socket .container {
padding: 5px 0;
}Regards,
Ismael
Hey!
Hi,
Insert the code on this tag
<div class="avia-font-entypo-fontello">📞</div>
Regards,
Ismael
Hi,
Specify the bold color on your custom.css or Quick css
body bold {
color: red !important;
}Change the color value.
Cheers,
Ismael
Hi,
Sorry for the delay.
1.) The arrows are there and it is colored white. You can’t see it because the thumbnails have a white area at the bottom. Try to add this on your custom.css
.avia-arrow {
background: red !important;
}2.) To fix the blurry thumbnails on your portfolio. Edit functions.php then find this code
$avia_config['imgSize']['portfolio_small'] = array('width'=>260, 'height'=>185 ); // images for portfolio 4 columns
Replace it with
$avia_config['imgSize']['portfolio_small'] = array('width'=>257, 'height'=>183 ); // images for portfolio 4 columns
Regenerate the thumbnails using this plugin. http://wordpress.org/plugins/regenerate-thumbnails/
3.) I can see that the background header image is fixed.
4.) The tabs on this page (http://www.chaja-design.nl/chajanew/zakelijke-hosting/#tab-id-1) is working fine on 320px width view. I don’t have an actual mobile to check this out but I think they are ok.
Cheers,
Ismael
Hi,
Just hide the 2nd menu with this.
.sub_menu {
display: none;
}You can add that on your Quick CSS or custom.css
Cheers,
Ismael
Hi,
Just add this on your custom.css
/* All Mobile Sizes (devices and browser) */
@media only screen and (max-width: 767px) {
.responsive #top #main .sidebar {display:block !important; }
}Sorry if you feel that way on the Enfold theme.
Cheers,
Ismael
-
AuthorPosts