-
AuthorPosts
-
June 14, 2014 at 1:54 pm #278871
Hi Guys,
Thanks for all the help and advice so far.
Thought it would be better to lump a load of questions into 1 help thread rather than post them individually.
1. Is it possible to hide the page title on the left when I select to show the bread crumbs?
2. I have set up 4 different portfolio’s at the moment. When you are on the portfolio page there are tabs to the left and right of the page that take you to the next item. At the moment they work back to front, so the left tab takes you to the next item, and the right tab takes you the the previous item. Is there any way of changing this?
Also with these portfolio tabs is there a way of setting them up so that they only cycle through the specific portfolio category that’s been selected. So if you have a portfolio that’s all videos then these tabs will only cycle through the video portfolio pages etc? At the moment I have 4 different portfolio galleries and the tabs allow the user to jump to a different portfolio which they may not want to see.
3. How can I amend the search results page? I have looked through everything and I can’t seem to see how its possible. At the moment its displaying a standard enfold template and I would like to customise this as its displaying elements that I don’t want to feature on the search page.
4. On special headings is there any way of preventing the “&” character from displaying in a different colour / font and italic?
5. Portfolio pages come up as a 404 unless I change the permalinks structure – which means that the portfolio pages have SEO friendly urls but all other pages are changed to page id’s – is there a work around to ensure that all pages can feature SEO friendly URLS?
6. Is there a way of changing the colour of the list icons to something other than the default grey?
7. Is there a way of preventing the gallery from automatically scaling the images to fill the columns? I have a gallery of 2 images which I would like to have displayed centrally – however it stretches the images out to fill the the empty 2 columns. There is a selection to choose the image size but that appears to be overwritten by the theme to expand the images.
8. A short while ago when I looked at the Enfold theme prior to purchase, the coloured selector that sits under the nav menu had a pointer on it which looks like its been removed. Is there a simple way of adding this? The basic line can sometimes look a little lost with the images that are going to be used in the main slider so this additional pointer should help it stand out.
9. On the standalone icons – is there a way of changing the size of the ring that surrounds the Icon? At the moment you can tailor the icon size but the surrounding ring remains the same size. They are a little oversized and I would like to reduce them down a bit.
10. Is it possible to set up a roll over colour for the list and standalone icons?
11. Is it possible to change the font size and weight for the menu text?
12. Where can I find the setting that turns the accordion slider on/off for mobile / tablet?
Thanks
James
- This topic was modified 10 years, 5 months ago by nurdwurks.
June 16, 2014 at 5:38 am #279230Hi nurdwurks!
Thank you for using the theme.
We actually prefer a single question on a single thread. Much easier for us to answer them on that manner. Also, it’ll be useful for other users asking for the same question.
1.) You can remove the title with this on Quick CSS:
h1.main-title.entry-title { display: none; }
2.) Add this on functions.php:
add_filter('avia_post_nav_entries', 'avia_apply_custom_sort_order_to_post_nav', 10, 2); function avia_apply_custom_sort_order_to_post_nav($entries, $settings) { if(!empty($entries['prev'])) $temp = $entries['prev']; if(!empty($entries['next'])) $entries['prev'] = $entries['next']; if(!empty($temp)) $entries['next'] = $temp; return $entries; }
For the category filter, add this:
function avf_same_category_navigation($settings) { if($settings['taxonomy'] == 'portfolio_entries') $settings['is_fullwidth'] = true; return $settings; } add_filter('avia_post_nav_settings','avf_same_category_navigation', 10
3.) Edit the search.php or the includes > loop-search.php.
4.) Change the color of the ampersand with this on Quick CSS:
.main_color .special_amp { color: red; }
5.) Please refer to this link on how to fix permalink issues: http://codex.wordpress.org/Using_Permalinks#Fixing_Permalink_Problems
6.) Change the iconlist background color with this:
.main_color .avia-icon-list .iconlist_icon { background-color: red; }
7.) We can set a specific width for the gallery but it might break the responsiveness of the element. Please select the thumbnail size on the Gallery Preview Image Size option.
8.) Do you mind providing a screenshot of this pointer?
9.) You can decrease the padding or adjust the width and height with this:
.av_font_icon.av-icon-style-border .av-icon-char { width: 30px !important; height: 30px !important; padding: 10px; }
10.) Use this to change the hover color of the icon and icon list elemen:
#top .main_color .av-no-color.av-icon-style-border a.av-icon-char:hover { color: red; } .main_color .avia-icon-list .iconlist_icon:hover { background-color: blue; }
11.) Edit the menu font on Enfold > Advanced Styling. Edit the Main Menu Link element.
12.) You can use media queries to hide or remove the accordion slider for mobile device:
@media only screen and (max-width: 767px) { .avia-accordion-slider-wrap { display: none; } }
Before posting a question, please take some time to search on the forum or review all of the resources in the Theme Documentation as a lot of basic stuff like theme installation, css snippets etc are already available in there with better explanation and awesomeness. Watch some of our Video Tutorials to learn more about the different aspect of the theme. You can also search the forums for queries that has been answered before that might be related to your problem.
If you find that you still have questions after taking the time on our documentations, don’t hesitate to let us know and we will be happy to assist you. If you have any requests or you feel like giving us a warm hug? You can definitely post it on our Feature Requests page. :)
Cheers!
IsmaelJune 17, 2014 at 1:04 pm #279958Hi Ismael,
Thanks for the response – still have a few issues however.
4. What I really wanted to do is stop the ampersand displaying as a different colour, bold & italic – is that possible?
6. I have dropped in the supplied CSS but it doesn’t seem to have any effect on the icon colours?
7. It seems regardless of whats selected the theme wants to enlarge the 2 column portfolio gallery to fill 4 columns. I just want the 2 images to be shown centrally aligned at a set size rather than being stretched to fill the available space.
10. Tried the code and doesn’t seem to have any affect on the icon colours?
11. Another question – is it possible to drop the header down the page? So its doesn’t sit flush with the bottom of the browser window?
Thanks
James
June 17, 2014 at 5:41 pm #280117Hi!
Please add following code to Quick CSS as well
4-.special_amp { color: inherit!important; font-style: normal; font-weight: normal; }
6-
.iconlist_icon { background-color: red !important; }
7- Can you post the link to your website?
10-.iconlist_icon:hover { background-color: blue !important; }
11- Not sure if i understood it clearly. Can you post a screenshot or elaborate?
Regards,
YigitJuly 3, 2014 at 9:30 pm #286875This reply has been marked as private.July 3, 2014 at 9:43 pm #286882This reply has been marked as private.July 8, 2014 at 5:47 am #288323Hi!
For the gallery/column issue, you would need to constrain the columns to that size with either css or adding blank columns on either side of the content.
So giving the content a custom class or using the color section ID and placing them in a color section you could easily target that container and make it smaller. This field:
Then it would be something like:
#yourcontainer .container { max-width: 800px !important; }
The function for the sorting shouldn’t have any possible effect on the images. It would have to be something else. Try first deactivating all active plugins and then removing the custom css and functions so that you are just about back at the stock theme. Turn on the plugins on at a time to make sure there was no conflict with one. Then re-add in the customizations if you think it might have been from there.
Best regards,
DevinJuly 17, 2014 at 4:30 pm #292542Hi Devin,
Thanks for the response – unfortunately the options you have suggested still don’t rectify the issue. The only one thats come close is by adding in the additional columns but it still means the boxes are a different size (but not a badly as before).
It seems odd that you are given the option to set the image size, but then the theme automatically overrides the selection to fill all the available space?
Regarding the portfolio tabs – is it possible to turn these off so they aren’t visible? Probably easier to just remove them.
Thanks
July 18, 2014 at 6:34 am #292838Hey!
Thank you for the update.
When you say “portfolio tab”, are you referring to the post navigation? Please use this on Quick CSS to disable it:
#top .avia-post-nav { display: none; }
Regards,
IsmaelJuly 21, 2014 at 7:19 pm #293980Hi Ismael,
Thanks for the response – the portfolio tabs I was referring to are the 2 grey tabs that feature at the side of a portfolio page.
http://kriesi.at/themes/enfold/portfolio-item/portfolio-big/
Looking at the source its listed as – avia-post-nav avia-post-next with-image
Thanks
July 21, 2014 at 7:25 pm #293984 -
AuthorPosts
- You must be logged in to reply to this topic.