Hey!
Versuche einmal folgenden Code in das Quick CSS Feld einzufügen:
#top div .widget_shopping_cart .button {
width: 100%;
display: block;
}
#top div .widget_shopping_cart .button.checkout {
margin-top: 10px;
}
Cheers!
Peter
Hi!
Tbh I’m not sure if Kriesi is going to fix this issue directly. The next update will include LayerSlider 5 and if we find an incompatibility issue (i.e. with the column elements) we will fix it for sure. For now you can try this css code:
@media only screen and (max-width: 767px){
body .column-top-margin {
margin-top: 10px;
}
.avia-align-center.avia_image.avia-builder-el-no-sibling {
margin-bottom: 10px;
}
}
to fix the spacing issue for smaller screens.
Cheers!
Peter
Hi!
1) I corrected the instructions here: https://kriesi.at/support/topic/portfolio-custom-link-to-open-in-a-new-page/#post-223280 . I think I gave you the wrong code line the first time.
2) There’s no option but you can try to use css to deactivate the click event. Insert this code into the quick css field:
.post-entry-2721 a{ pointer-events: none; }
and replace 2721 with the id of the entry where you want to remove the link. If you want to remove it from several entries duplicate the selector and separate it with a comma like:
.post-entry-2721 a, .post-entry-2725 a{ pointer-events: none; }
Best regards,
Peter
Hey!
This should be possible. In wp-content/themes/enfold/js/shortcodes.js replace
next : function(e)
{
e.preventDefault();
this._stopSlideshow();
this._navigate( 'next' );
},
// public method: shows previous image
previous : function(e)
{
e.preventDefault();
this._stopSlideshow();
this._navigate( 'prev' );
},
with
next : function(e)
{
e.preventDefault();
this._stopSlideshow();
this._navigate( 'next' );
setTimeout(this._startSlideshow(),50);
},
// public method: shows previous image
previous : function(e)
{
e.preventDefault();
this._stopSlideshow();
this._navigate( 'prev' );
setTimeout(this._startSlideshow(),50);
},
Cheers!
Peter
Hey AdDesign!
You can add this on Quick CSS or custom.css:
#top .menu-item-search-dropdown > a, #searchform #searchsubmit, .ajax_search_image, .iconfont {
font-size: 25px;
}
Change the color using this:
.header_color .main_menu ul:first-child > #menu-item-search > a {
color: red;
}
Best regards,
Ismael
Hi!
@costin: He added it on a div then set it to fix:
.main_color {
background: #ffffff url(https://www.heart-working.de/wp-content/uploads/2013/04/bg3.png) top center no-repeat fixed;
}
Cheers!
Ismael
Hi @tdproperty!
As mentioned above the exact same style that Kriesi has here on Kriesi.at isn’t something we can assist. Kriesi specifically mentioned and asked us not to provide the customization as he’d like to write a blog or tutorial on the customization down the road.
If you have any other questions just make a new topic with the question/issue and we’ll do our best to answer. I’m going to close this topic for now so we don’t continue getting of the original posters issue and get a long extended topic on customization.
Best regards,
Devin
Hi!
If you add #top.single-post to the selector you can hide the title only on single pages. Eg:
#top.single-post .entry-content-wrapper .post-title {
display: none;
}
Regards,
Devin
Hey Bryce!
Try adding this code to the Quick CSS:
#top #main .sidebar {
float: left !important;
}
Cheers!
Josue
Hey Sylvio!
I personally think a good option would be to make the table remain at 1030px width regardless of windows size, this code will do it:
.responsive #top{
overflow-x: scroll;
}
.avia-table {
width: 1030px !important;
}
@media only screen and (max-width: 767px)
{
.responsive .avia-pricing-table-container , .responsive .pricing-table-wrap{display:inline-block !important;}
.responsive .pricing-table{display:inline !important; margin-bottom:0 !important;}
.responsive .pricing-table.avia-desc-col{display:inline !important;}
}
Cheers!
Josue
Hey Bruno!
Please open Footer.php file in Appearance > Editor and make sure 168th line is the same as in screenshot, It should be at the very bottom of the file http://i.imgur.com/M3XOqYo.jpg
Best regards,
Yigit
Hey RicardoSuarez!
Please refer to Josue’s post here https://kriesi.at/support/topic/tesimonial-appearance/#post-222032
Regards,
Yigit
Hi!
Please refer to Josue’s post here https://kriesi.at/support/topic/tesimonial-appearance/#post-222032
@richardolpin thanks, as always :)
Best regards,
Yigit
This reply has been marked as private.
Wordpress 3.8.1
Enfold 2.4.5
http://longislandteacher.com/cmxprocess_v2
Great theme, thanks.
Would like to modify main menu so it spans the entire page width. I’m hoping there is a simple addition to the custom CSS that would accomplish this. I’ve made other adjustments to the menu background, font color, etc., so the custom CSS under the style tab is as follows:
.header_color .main_menu ul:first-child > li > a { color: #FFFFFF; background-color: #F67736; width:205px; } /* color of main menu items */
.header_color .main_menu ul:first-child > li a:hover { color: #000000; } /* hover state of main menu items */
.header_color .main_menu ul:first-child > li.current-menu-item > a,
.header_color .main_menu ul:first-child > li.current_page_item > a { color: #000000; } /* color of active menu item */
.main_menu .menu li a strong {
display:block;
font-size:12px;
font-weight:normal;
cursor: pointer;
text-align: center; }
#header_meta { display: none; }
.content, .sidebar {
padding-top: 10px;
padding-bottom: 10px;
}
.main_menu ul:first-child > li > a{
display:block;
text-decoration: none;
padding:0 13px;
font-weight: normal;
font-size:12px;
font-weight: 600;
text-align:center;
}
.avia-section-large .content, .avia-section-large .sidebar {
padding-top: 70px;
padding-bottom: 50px;
}
.breadcrumbs { display: none; }
.title_container .main-title {
margin: 0;
font-size: 30px;
font-style: italic;
color: orange;
position: relative;
z-index: 2;
min-height: 36px;
line-height: 2.3em;
top: 0;
font-weight: 400;
}
#top .alternate_color.title_container .main-title a { color:#f05a1a; }
That’s alright, Devin. I understand. I am, however, now restyling the mega menu using a child theme to create a somewhat closer effect of what has been displayed in my example.
I have run into a problem though, the height of the logo seems to influnce the .avia_menu height, and no matter what you do, the whole layout breaks. I have tried a lot of workarounds to this, but it seems there are too many interlinking css references that makes it hard, haha!
Anyway, my code now is:
.social_header #header_main .container, .social_header .main_menu ul:first-child > li a {
height: 70px;
line-height: 90px;
}
<strong>using this to restrict the height of the main menu and make the sub menus appear as closer to the main as possible.</strong>
#avia-menu a: {
margin-top: 10px;
height: 30px !important;
}
<strong>re-trying here to set the height but the logo height in the header keeps interfering</strong>
#avia-menu a:hover {
background-color: #ffffff !important;
color: #70b115 !important;
}
any possible help to this would be highly appreciated!
here’s my enfold work in progress so far: http://steroidim.com/wpdemo/
Since I updated version 2.4.5 to 2.5.2 the button “scroll to top” is empty.
My side
What`s wrong?
Regards,
Bruno
Hi,
I would like to display an entypo icon (always the same) right before every page’s main title (like here: http://www.vla.nu/contact). This means I have to have it set right before the h1.main-title.
<h1 class="main-title entry-title"></h1>
I want to use the list icon: &# 9776;
Moreover, I want the breadcrumbs and main title to be displayed on top of each other block-wise in responsive view (also like http://www.vla.nu/contact) – I just want the title bar to look just the same. Can you give me a hint on how to edit the css on this one? Help would be very much appreciated!!
Kind regards,
Dick
Hello people,
I am customizing the 404 page on my site and found the topic set-404-error-page-to-full-width. I have made those changes to the code of the 404.php file but now there is an unwanted border on the right. When I inspect the elements of page in Chrome it seems that the class ´content´ is the cause of this border. Any idea how to solve this? When I remove the content class the border dissapears but the padding also dissapears.
Regards,
Erik
Mmmmmm… interesting?
It’s definitely added to Quick CSS – just double checked… The preview pane is working at 572px from the code you supplied (by the look of things) but the issue of the top four items being in a shorter height container is confusing – when all the rest fill a larger spaced container.
Letme know if you want me to copy the Quick CSS into one of those style sheets above via FTP.
Thanks
Ed
-
This reply was modified 12 years ago by
Swarez.
Good day!
I have a second question.
The text “You are here” in the breadcrumbs is translated in Dutch as “U bevind zich hier”. The correct translation though is: “U bevindt zich hier”. So there’s a language error on almost every page now.
I’m not a webdesigner, but I tried some of the suggestions in this forum on related topics: make changes in the class-breadcrumb.php file, in the NL.po file, installed translation-locatization. But with no result.
Do you have any suggestions?
Thank you!
Conny
connybeneden.nl
Hello,
I have selected a background image for my header from the dropdown menu on the theme Styling options (fullsizegrunge.jpg). The background color is #111111. It looks great bud the background image only shows no the middle part of the header and not across the full hight. I have selected the “Header with social icons and bottom navigation”. The background image is not visible on the top bar and on the navigation bar, it is only visible on the stripe in the midle. I would like the whole header to have the same appearence (black with grunge efect).
I enclose an image:
https://drive.google.com/file/d/0B9EeARPNJNFyYjJsYVFNanQwX1E/edit?usp=sharing
Regards,
Tomeu
Hi Josue Devin Dude,
I’m having a lot of frustration on creating my product page. It’s not as easy as it was on Propulsion.
1: I’d like to move ‘add to cart’ element to underneath the product pics.
2: How can I remove the tab OUTLINE and tab TItle (the word ‘Description’). I know i can just use the ‘product short description’ field, however it does not let me do much in the interface.
http://bathmatesingapore.com/2014/wp-content/uploads/2014/02/Screen-Shot-2014-02-16-at-3.34.21-pm-450×450.png
3: I still can’t add a tab on the product page as the ‘tab content’ field is unclickable. This is my original thread ‘https://kriesi.at/support/topic/tab-content-field-unclickable/’
Thank you very much guys!
Jason
Hi!
Those options appear as disabled because in the source menu (desktop menu) those links doesn’t have an actual link (instead they have a #).
Best regards,
Josue
Thanks for that, however I was talking about the side-navigation, not the top navigation.
When viewing third level pages, (parent>child>child), The side navigation menu item doesn’t have the background colour highlights and borders. You can use previously supplied link to see what I mean.
Thanks
This reply has been marked as private.
Hi guys,
I am trying to remove the layerslider border from http://codelessme.com/sparc
I did take a look at and try what was found at https://kriesi.at/support/topic/remove-layer-slider-borders/ and nothing mentioned there worked.
A little help.
Cheers
David
Hello everybody !
This trick to show comments on portfoilio pages built with the advanced editor was working perfectly on my parent theme : https://kriesi.at/support/topic/comments-dont-show-up-on-portfolio-pages/#post-123457 ; but it doesn’t on a child theme.
Any idea ?
Thanks ;)
-
This topic was modified 12 years ago by
Ronan.