Forum Replies Created
-
AuthorPosts
-
Hi,
Just add this on your custom.css or Quick CSS
body .avia-button.avia-color-theme-color:hover {
color: white;
color: rgba(0, 0, 0, 0.5);
text-shadow: 0 1px 0 rgba(255, 255, 255, 0.1);
background-color: blue;
}Change the values.
Regards,
Ismael
Hi,
You can find all of the theme’s form style on css > 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;}I think this part of the style is the one preventing you from defining input width
#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;
}The width is set to 210px.
Regards,
Ismael
Hi,
Edit header.php then find this code
$phone = avia_get_option('phone');
$phone_class = !empty($nav) ? "with_nav" : "";
if($phone) echo "<div class='phone-info {$phone_class}'><span>{$phone}</span></div>";Cut that and place it below this code
echo avia_logo(AVIA_BASE_URL.'images/layout/logo.png', false, 'strong');Add this on your custom.css or Quick CSS
.social_header .phone-info {
font-weight: bold;
height: 30px;
line-height: 10px;
right: 200px;
top: 40px;
position: absolute;
}
.social_header .phone-info.with_nav span {
border: none;
}Cheers,
Ismael
May 23, 2013 at 4:55 am in reply to: Changing the Tab & Text colour of content Element Tab (Avia layout builder) #120378Hi,
It doesn’t have a bottom margin. The portfolio grid layout should be intact without padding and margins. Can you give us a link to your website?
Maybe, you didn’t add an excerpt to your portfolio items. Edit each portfolio items, look for Screen Options > Tick the Excerpt. Place an excerpt to remove the bottom space.
Regards,
Ismael
May 23, 2013 at 4:41 am in reply to: custom widget area displays html in main content area too #120677Hi,
Edit your Contact page, look for Layout > Layout, if right or left sidebar is selected, under Sidebar Setting > choose a different Widget Area.
Regards,
Ismael
Hi,
Please add this on your custom.css
.news-thumb {
min-width: 36px;
min-height: 36px;
width: 36px;
height: 36px;
}Regards,
Ismael
Hi,
Try to add this on your wp-config.php
define('WP_MEMORY_LIMIT', '96M');This might not work if your host doesn’t allow the option, in that case contact your host to increase the PHP memory limit.
Update us if it helps.
Cheers,
Ismael
Hi,
You can do something like this on your custom.css
#menu-item-search {
background: url(../images/layout/loading.gif) no-repeat center9;
text-indent: -9999px9;
}Replace the image URL with a search icon. Don’t remove the 9, it means for IE8 and below
Regards,
Ismael
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
-
AuthorPosts
