Forum Replies Created
-
AuthorPosts
-
***edit***
I didn’t type quick enough ;)
Hi,
The footer uses the id #footer.
You should be able to add a custom link on the appearance>menus page and use #footer as the url. That will create a menu item that scrolls to the footer when clicked.
If you don’t see Custom link as a menu item click Screen options in the top right and double check it is checked
Hope that helps
TJ
- This reply was modified 8 years, 9 months ago by tjswarbs78.
February 22, 2016 at 6:28 pm in reply to: default grid is set to 3 columns, edit to 5 columns #587361Hi,
I’ve recently change the archive page from a 3 column grid to a 4 colomn grid by editing the archive.php
On line 105 (it may not be the same on all readers) change the ‘columns’ => 3, to what ever you like. I would image 5 to be the highest value as the theme uses a max of 5 columns.
Hope that helps a little :)
TJ
- This reply was modified 8 years, 9 months ago by tjswarbs78.
You could try…
.page-id-634 .container { max-width:100%; }
From my understanding the page number class should come first. So that snippet should only change the container to 100% on page 634.
you may have to add in a rule to keep the header / menu / footer etc at the boxed size
.page-id-634 #header_main .container{ max-width:1310px!important; } .page-id-634 #footer .container{ max-width:1310px!important; } .page-id-634 #main .title_container .container{ max-width:1310px!important; }
Change what ever your boxed width is for 1310px above. The menu / breadcrumb will stay central
TJ
- This reply was modified 8 years, 9 months ago by tjswarbs78.
Sorry to bump this to the top… please don’t yell at me ;)
Post was getting lost down the pages. Any ideas if it’s possible?
Thanks
The google map element has the option to add multi addresses already built into it.
When the element is open click the plus sign in the top left to add as many address markers as you want / need.
You can set the zoom level to automatically show all markers. That way you have all markers on one map.Not sure if that’s what you’re after?
TJ
Morning,
I did spot that the other day and it does kind of do the job as it adds in the category, however, it removes the excerpt. Anyway to have the excerpt AND the category together?
I imagine it is just tweaking that php code but that’s beyond me.
Had a play with the PHP but no luck, any ideas?
Thank guys / gals
TJ
- This reply was modified 8 years, 9 months ago by tjswarbs78.
Hi andy,
I’m not after changing the sort order for the portfolio I am wanting to add the category tag to the portfolio grid elements.
I have the blog and portfolio set to grid view so each item looks like a little card.
Each blog looks like this…The green link is the category tag
What a portfolio item looks like…
I would like the portfolio category to appear above the name like it does for blog items.
I know i could display portfolio items using the post slider or blog post element but I want to make use of the AJAX function that comes with portfolio grid.Thanks
- This reply was modified 8 years, 9 months ago by tjswarbs78.
there is some margin above the image of 0.85em which is pushing it down slightly
.page-id-9970 #flexi_searchbox { margin-top:0.85em !important; }
that will add the add same amount of margin to the booking widget but only on the home page
TJ
In the back end when using the advanced layout builder you can set the height of elements in a row to be the same or individual.
That will set the columns to be equal but it might not align content .
- This reply was modified 8 years, 9 months ago by tjswarbs78.
to change the Boro Hotel text try…
#flexi_searchbox #b_searchboxInc #b_destination { font-size:20px; }
a { font-weight:bold; }
that will turn all hyperlinks bold
TJ
As always you guys deliver the goods!
is there anything you can’t do with this theme? :)TJ
You’ve pointed me in the right direction I shall give it a go :)
Many thanks
EDIT
posting mainly due to the fact that with your direction I figured it out. May come in useful for others…
Rather than the white sonar effect using the code below as an example you can set it to any color on any icon.
First give the icon a customer css class ( in this case blue-icon and green-icon)
Then the following css will color the sonar effect accordingly/*sonar effect blue*/ .blue-icon a:hover:after { -webkit-animation: sonarblue 1s ease-out!important; -moz-animation: sonarblue 1s ease-out!important; animation: sonarblue 1s ease-out!important; } @-webkit-keyframes sonarblue { 0% {opacity: 0.3;} 40% {opacity: 0.5;box-shadow: 0 0 0 2px rgba(0,57,118,0.1), 0 0 10px 10px #fff, 0 0 0 10px rgba(0,57,118,0.5);} 100% {box-shadow: 0 0 0 2px rgba(0,57,118,0.1), 0 0 10px 10px #fff, 0 0 0 10px rgba(0,57,118,0.5);-webkit-transform: scale(1.5);opacity: 0;} } @-moz-keyframes sonarblue { 0% {opacity: 0.3;} 40% {opacity: 0.5;box-shadow: 0 0 0 2px rgba(0,57,118,0.1), 0 0 10px 10px #fff, 0 0 0 10px rgba(0,57,118,0.5);} 100% {box-shadow: 0 0 0 2px rgba(0,57,118,0.1), 0 0 10px 10px #fff, 0 0 0 10px rgba(0,57,118,0.5);-moz-transform: scale(1.5);opacity: 0;} } @keyframes sonarblue { 0% {opacity: 0.3;} 40% {opacity: 0.5;box-shadow: 0 0 0 2px rgba(0,57,118,0.1), 0 0 10px 10px #fff, 0 0 0 10px rgba(0,57,118,0.5);} 100% {box-shadow: 0 0 0 2px rgba(0,57,118,0.1), 0 0 10px 10px #fff, 0 0 0 10px rgba(0,57,118,0.5);transform: scale(1.5);opacity: 0;} } /*sonar effect green*/ .green-icon a:hover:after { -webkit-animation: sonargreen 1s ease-out!important; -moz-animation: sonargreen 1s ease-out!important; animation: sonargreen 1s ease-out!important; } @-webkit-keyframes sonargreen { 0% {opacity: 0.3;} 40% {opacity: 0.5;box-shadow: 0 0 0 2px rgba(0,170,103,0.1), 0 0 10px 10px #fff, 0 0 0 10px rgba(0,170,103,0.5);} 100% {box-shadow: 0 0 0 2px rgba(0,170,103,0.1), 0 0 10px 10px #fff, 0 0 0 10px rgba(0,170,103,0.5);-webkit-transform: scale(1.5);opacity: 0;} } @-moz-keyframes sonargreen { 0% {opacity: 0.3;} 40% {opacity: 0.5;box-shadow: 0 0 0 2px rgba(0,170,103,0.1), 0 0 10px 10px #fff, 0 0 0 10px rgba(0,170,103,0.5);} 100% {box-shadow: 0 0 0 2px rgba(0,170,103,0.1), 0 0 10px 10px #fff, 0 0 0 10px rgba(0,170,103,0.5);-moz-transform: scale(1.5);opacity: 0;} } @keyframes sonargreen { 0% {opacity: 0.3;} 40% {opacity: 0.5;box-shadow: 0 0 0 2px rgba(0,170,103,0.1), 0 0 10px 10px #fff, 0 0 0 10px rgba(0,170,103,0.5);} 100% {box-shadow: 0 0 0 2px rgba(0,170,103,0.1), 0 0 10px 10px #fff, 0 0 0 10px rgba(0,170,103,0.5);transform: scale(1.5);opacity: 0;} }
- This reply was modified 9 years ago by tjswarbs78.
link is private below. If you hover over the icon the tooltip explains what I’d like :)
You can add images to a menu item from the appearance>menus without having to use any (or much css).
Use Links rater than Page. URL will be your application page. LINK TEXT will be the image you want to use
<img src="http://www.imageurlhere.com" />
That will add the image straight into the menu as clickable. A little css would be needed to make the image the correct size but this would be far easier than copying and pasting php.
Hope that helps a little :)
Tim
Enfold comes with a social share buttons element in the advanced layout builder it is under content elements.
If you would like more generic ones you can visit Facebook / Twitter / Google+
Your site will have generic meta / og data that is used to populate the share content but you can specify what each page will look like by adding in your own data. Read up on OG meta data and you can test what is pulled through for each page by using facebook debug
hope that helps :)
- This reply was modified 9 years, 3 months ago by tjswarbs78.
August 6, 2015 at 6:04 pm in reply to: enfold avia layout builder not working after update from 3.1.3 to 3.2.3 #484074Go to users and select a user. Try CHECKING the box to disable visual editor.
For some reason checking the box under user profile to DISABLE the visual editor makes it work.
If you leave to UNCHECKED the visual editor breaks.I’m guessing someone at WordPress got the checkbox the wrong way round :)
I’ve had the same problem so disabled plugins, fluched cache, did fresh install of WP, fresh theme. The only thing that worked was checking the button.
Try it both checked and unchecked see if ti makes a differenceTim
August 6, 2015 at 6:00 pm in reply to: No WYSIWYG Editor on Default or Advanced Layout Editor, Enfold #484071For some reason checking the box under user profile to DISABLE the visual editor makes it work.
If you leave to UNCHECKED the visual editor breaks.I’m guessing someone at WordPress got the checkbox the wrong way round :)
I’ve had the same problem so disabled plugins, fluched cache, did fresh install of WP, fresh theme. The only thing that worked was checking the button.
Try it both checked and unchecked see if ti makes a differenceTim
That looks fine :)
It used to be best practice to block /wp-content/plugins/ and /wp-includes/ but plugins output js and css to those and if blocked google can’t render the pages fully.
Check out Yoast.com and his blogs on SEO tips and what not.
The Yoast plugin simple adds the meta / og data to your html but that doesn’t mean that your site WILL have good SEO. With the correct keywords / descriptions in place the site has the potential to rank highly but with so many factors affecting SEO there is sadly no magic fix.
Google uses some 200 criteria…
• Freshness of Content
• Relevance of content
• Meta Keywords
• Meta Descriptions
• Database vs non database
• Number of visits
• Use of Alt descriptions for images
• No broken links
• The use of an accurate robots.txt file on server
• Cross browser compatibilityAll you can do is get some basics done and hope for the best.
The Yoast SEO plugin is well put together so I imagine you’re set up is correct.
To create a site map go to the plugin>xmlsite map and follow what it says. To link it to Webmaster tools go to crawl>sitmaps. Top right there will be a button add/testsitemap. Use that to test your site map is working. chances are the url will be http://www.yoursite.com/page-sitemap.xml.
Make sure your robots.txt isn’t blocking any .css and .js files.
Check your site has fully mobile usability. Webmaster tools>search traffic>mobile usability. Using Enfold there will be no problems as it’s a great theme but worth a check anyway :)
Google crawls from url to url so the more links to your site you have the more google will find it. Back links are key but don’t get caught-up in black hat SEO!
If you really need to get to the top think about Google Awords. Paid SEO works well but in all honesty it’s better to have decent organic SEO.
No idea if any of that will be helpful ;)
- This reply was modified 9 years, 3 months ago by tjswarbs78.
Trust me to pick something that’s complicated :)
Thanks for the reply, I appreciate it
Remove the two columns that are there and use a code block with the following
<div class="avia-button-wrap avia-button-center avia-builder-el-0 avia-builder-el-no-sibling " style="display:inline;"><a href="URL HERE" class="avia-button avia-icon_select-no avia-color-theme-color avia-size-large avia-position-center><span class="avia_iconbox_title">BUTTON NAME</span></a></div>
<div class="avia-button-wrap avia-button-center avia-builder-el-0 avia-builder-el-no-sibling " style="display:inline;"><a href="URL HERE" class="avia-button avia-icon_select-no avia-color-theme-color avia-size-large avia-position-center><span class="avia_iconbox_title">BUTTON NAME</span></a></div>
Add some CCS to style as you wish and center
I used this way on a site to center two buttons in the full width slider
- This reply was modified 9 years, 8 months ago by tjswarbs78.
I’m having this too. Running wordpress 4.0.1 and according to the theme am running the latest version of enfold. Slider is there on the layer builder but not when viewing the live page. Maybe unrelated but the contact form is doing the same.
I’m guessing the issue is due the the latest update for WP. Will manually update the theme again hopefully this will solve the issue.
TJ
- This reply was modified 10 years ago by tjswarbs78.
Thanks for getting back to me again really appreciate it. I’ll give it a whirl.
I see from the forum you lot get bombed out so hats off to you allCheers
TJ
One last question (and I feel i know the answer)..
this is what I’m after for the button links…
a href=”#contact” onclick=”contact; clicky.log(‘#contact/contact-trigger-main-page’,’click’); return false;” class=”avia-button avia-icon_select-no avia-color-theme-color avia-size-large avia-position-center “><span class=”avia_iconbox_title”>GET IN TOUCH<
that works fine on code blocks. Is there a way to get that onclick into the shortcode for buttons and get it working?
[av_button label='The Software' link='manually,http://www.linkhere.com' onclick bit here]
As i say jQuery is beyond me but I’m learning slowly.
Cheers for the help
Tim
- This reply was modified 10 years ago by tjswarbs78.
It isn’t possible to add id/classes to buttons etc in the layer builder?
In any case jQuery is way over my head at the moment as I’m just starting out.I’d ask you to help out but it isn’t really theme related and that’d be cheeky!
I’ll risk using the debug to add in the code… what’s the worst that could happen!…
Tim
PS. Cracking theme by the way ;)
A bit of poking around the forums (maybe should have done that first) has come up with this…
//set builder mode to debug
add_action(‘avia_builder_mode’, “builder_set_debug”);
function builder_set_debug()
{
return “debug”;
}to turn on debug for the layer builder.
What are the ramifications of editing in there? Is it safe to add my onclick handlers in there?
Cheers
Tim
This reply has been marked as private. -
AuthorPosts