Forum Replies Created
-
AuthorPosts
-
Hi,
1. I see this in your Quick CSS. Please remove it (all of it)
@media only screen and (max-width: 767px){
.responsive .avia-pricing-table-container,
.responsive .pricing-table-wrap {
display: table-cell;
}
}2. I asked you to remove some lines , to *delete the entire block* from shortcodes.css which you have not done.
This is how you have those lines now (see my previous answer for instructions) ..
@media only screen and (max-width: 767px)
{
/*
.responsive .avia-pricing-table-container , .responsive .pricing-table-wrap{display:block;}
*/
.responsive .pricing-table{display:block; margin-bottom:40px;}
.responsive .pricing-table.avia-desc-col{display:none;}
}and this is how you need to have them
@media only screen and (max-width: 767px)
{
/*.responsive .avia-pricing-table-container , .responsive .pricing-table-wrap{display:block;}*/
.responsive .pricing-table{display:block; margin-bottom:40px;}
/*.responsive .pricing-table.avia-desc-col{display:none;}*/
}3) Please make sure that the css i gave you in my previous answer is located **on the very bottom** of your Quick CSS.
—
If you follow my instructions, this is how you will see your site:
http://www.clipular.com/c?10722065=LJJ3AGezHj1ntzhiVQmVbSPUriU&f=.png (tablet)
http://www.clipular.com/c?10763031=C3vk5V6dC3uqO3NE_okXYqDbluo&f=.png (smartphone)
Thanks,
Nick
Hi,
The easiest way to QA this issue, would be for you to start with a fresh install , do a dummy data import which should have that same page ( http://kriesi.at/themes/enfold/portfolio-item/single-portfolio-fullscreen-slider-3/ ) and then add the same images as the demo sites to your local version of that page. when they are identical , then start adding the css code or customization you want, and you will see where the difference will be. I would compare the source code using something like http://www.winmerge.com to instantly see what makes the demo site different than yours.
Thanks,
Nick
Hi,
Open up header.php and find this line somewhere toward the bottom of the page that looks like
<!-- end container-->
now paste the code below before or after this line, just substitute the 2 urls.
<strong class="logo2">
<a href="URL OF LINK"><img src="URL OF IMAGE" alt=""></a>
</strong>Now add the following css to quick css or to /css/custom.css file
strong.logo2 {
position: relative;
float: right;
}Now to move the menu add this css, but you will need to play around with the number in the media query (as well as make your logo smaller)
.main_menu {
left: 19em;
}
@media only screen and (min-width: 768px) and (max-width: 989px) {
.main_menu {
left: 12em;
}}You will need at the end to add a few lines in /js/avia.js since as you can see the left logo shrinks when you scroll down the page, and the right logo will not do that by itself. Once you finish these steps let us know.
Thanks,
Nick
Hi,
Please add an empty index.html file to every folder on your server or set your server to have non browsable directories because you are keeping a lot of stuff on there like all your zip files that are accessible by anybody in the /~jxxxx/theme folder.
Please update to the last version of the theme. Have you made any changes to remove the menu between 768-989 screen size? When you update this will go away. If not you can use this to show the mobile menu at that screen size:
@media only screen and (max-width: 989px) and (min-width: 768px)
.responsive .mobile_menu_tablet .main_menu {
display: block;
}Dont forget to protect your directories with index.html please.
Thanks,
Nick
Hi,
The easiest way to do it would be to follow the directions here -> https://kriesi.at/support/topic/repositioning-breadcrumbs-and-page-title#post-120763
Thanks,
Nick
July 18, 2013 at 6:46 pm in reply to: How can I Insert an Advanced Layer Slider Inside a Tab? #129708Hi,
Can you show a page with your experiments so we can try some things with css.
Thanks,
Nick
Hi ,
Please read this post to see how to do this and why it isn’t working http://stackoverflow.com/a/9689686/1245478
Thanks,
Nick
Glad that Ismael showed you the way.
Enjoy the theme!
Nick
July 18, 2013 at 4:26 pm in reply to: Embedded video content covering menu when scrolling down the page #129339Hi,
Shoot me an email please with a link to this page along with your website url.
usjahm(at)gmail(dot)com
Thanks,
Nick
July 18, 2013 at 4:11 pm in reply to: How to add portfolio grid ou gallery shortcut in a widget? #130011Hi,
Show me the page where you made this small thumb gallery, please. What needs to happen is you set it up somewhere on a page not in the footer, then you view the source of the page once its working in middle of page how you want it. Copy the part of the source where it starts to where it ends, and paste it into the enhanced text widget. If you dont know how to do that, please show the page where its all set and ready with the images and links just how you want them.
Thanks,
Nick
Hi,
Please do this.
1) Add the following CSS
@media only screen and (max-width: 767px){
.pricing-table li{
height:60px
}}
@media only screen and (max-width: 479px){
.pricing-table li{
height:90px !important;
}
}2) And open up /css/shortcodes.css and *delete the entire block* on lines 1059-1063 that looks like
@media only screen and (max-width: 767px)
{
.responsive .avia-pricing-table-container , .responsive .pricing-table-wrap{display:block;}
.responsive .pricing-table{display:block; margin-bottom:40px;}
.responsive .pricing-table.avia-desc-col{display:none;}
}Thanks,
Nick
Hi,
Without seeing the url in question showing the sidebar you can’t delete I cant answer better than this. You need to check how much memory your wordpress installation has. Boost it up to 128M by following instructions here #1 ( http://docs.woothemes.com/document/increasing-the-wordpress-memory-limit/ )
Then you will need to make sure that no widgets are attached to the sidebar before deleting it and that no widget area currently has that sidebar assigned to it.
Thanks,
Nick
Hi,
You would need to adapt this function http://stackoverflow.com/a/15044377/1245478
I cant answer better since there is no url for me to look at.
Thanks,
Nick
Hi,
Please go to http://www.codeable.io where you can find Devin and me as well as others.
Thanks,
Nick
Hi,
Here is where you can see the dimensions of image, and dimensions shown in initial size and when it shrinks:
Thanks,
Nick
Enjoy the theme!
Thanks,
Nick
July 18, 2013 at 12:20 pm in reply to: How to reduce the height of the main header (with the logo)? #127944Glad that Ismael solved that for you.
Enjoy the theme!
Thanks,
Nick
Glad it worked for you. Enjoy the theme!
Thanks,
Nick
Hi,
Remove the previous css and add this instead:
#top .logo {
float:right;
left:auto;
}
@media only screen and (min-width:980px) {
#top .logo {
right:-100px;
}
}
@media only screen and (min-width:768px) and (max-width:979px) {
#top .logo {
right:-60px;
}
}
@media only screen and (max-width:767px) {
#top .logo {
right: -100px;
}
}Thanks,
Nick
Hi,
Misread your post. My bad. Thought it was a Chrome only problem. Now I see it.
Please add the following CSS
@media only screen and (min-width: 768px) {
.flex_column.av_two_third {
width: 64.6%;
}}You know there is a setting in the backend in Enfold > Theme Options > General Settings called Responsive that has 2 widths, one 1030px and one 1210px. You should change to 1210px since you have enough room for it.
Thanks,
Nick
Hi,
Sorry about that, needed to add !important. Check the updated code above.
When I tested on your site I always add to custom.css, though in this case it will not make a difference.
Thanks,
Nick
July 17, 2013 at 11:27 am in reply to: How to reduce the height of the main header (with the logo)? #127938Hi,
Sorry, guess I need new glasses though I been told i will need to use a counterbalance in the back of my head to prevent sclerosis. :)
Please add this css
.fixed_header.social_header #main {
padding-top: 136px;
}Thanks,
Nick
Hi,
Please go to Appearance > Menu and create a nested menu by dragging and repositioning the blocks representing menu items in a hierarchical configuration — i.e. so that it looks like ‘steps’ on a staircase -> http://www.clipular.com/c?10476016=f3ORLhsw3cnR2nu_kFMglbRwIXY&f=.png
Thanks,
Nick
Hi,
You need to pull back the menu the same number of pixels you used to change the height to 160px
Please use this css, just play with the numbers a little:
.main_menu ul:first-child >li > ul {
top: 20px;
}Thanks,
Nick
July 17, 2013 at 2:40 am in reply to: H1 permalink takes to home page not archive page for posts #129664Hi,
This happens when the blog is not defined in Enfold > Theme Options . In that scenario, the individual blog post automatically display those words and link to the home page. To change the words and the link you would need to edit 2 pages:
First get the URL where you want the link to point to, just copy it from your browser then open up::
single.php
line 9 and 10 and change them like this
$title = ''My new title';
$t_link = 'http://your-domain.com/link-to-blog-page/and-a-slash-at-the-end-of-link/';
index.php
Lines 11 and 12. Repeat the same exact thing as above lines 9 & 10, can copy the code even from above.
Thanks,
Nick
Anytime. Enjoy the theme.
Nick
Hi,
Can you show a screen grab of the problem, a snapshot image since I don’t see anything but a normal site. You can use clipular.com browser addon to take a snapshot.
Thanks,
Nick
July 17, 2013 at 1:08 am in reply to: How to reduce the height of the main header (with the logo)? #127936Hi,
I really need to see the page itself to give you the code because I am not seeing space on mine so our configurations differ somehow. You can hide the url in www/goo.gl if you want.
Not sure why you removed margin-top since now you have pretty much how the code was before my modification.
Thanks,
Nick
July 16, 2013 at 8:41 am in reply to: How to arrange contents in megamenu through pages/sections #127235Hi,
I tried to view the source to see the code but sadly it was just an image. Please provide a url to the live site since there are so many ways to customize the theme there are always multiple paths to reach the same result with each requiring its own solution. There are 5 headers for example so its difficult to answer about the mega menu. Also you customized a lot yourself. If you are using a maintenance plugin, please create a password we can use to see the theme and you can always use http://www.goo.gl to hide the url.
Thanks,
Nick
I would re-install the browser just in case, sometimes after a while even Chrome gets clogged up with redundant files. Feel free to contact us if anything returns or anything else.
Enjoy the theme!
Thanks,
Nick
-
AuthorPosts