Forum Replies Created
-
AuthorPosts
-
June 22, 2017 at 3:03 pm in reply to: IMAGE WITH HOTSPOTS. How to add a Question Mark ( ? ) instead of numbers #811576June 21, 2017 at 10:52 pm in reply to: IMAGE WITH HOTSPOTS. How to add a Question Mark ( ? ) instead of numbers #811207June 21, 2017 at 8:47 pm in reply to: IMAGE WITH HOTSPOTS. How to add a Question Mark ( ? ) instead of numbers #811157May 26, 2017 at 11:02 pm in reply to: Adding Constant Contact sign-up to very top – extra elements – above header #800439
I could use button code from Constant Contact – like this:
<!– BEGIN: Constant Contact Email List Form Button –><div align=”center”>Sign-up Property Updates<!– BEGIN: Email Marketing you can trust –><div id=”ctct_button_footer” style=”font-family:Arial,Helvetica,sans-serif;font-size:10px;color:#999999;margin-top: 10px;” align=”center”>For Email Newsletters you can trust.</div></div>
But simplify to where it has the button with no extras?
<!– BEGIN: Constant Contact Email List Form Button –><div align=”center”>Sign-up Property Updates</div>
Want it simple
thanks
ccMay 26, 2017 at 10:31 pm in reply to: Adding Constant Contact sign-up to very top – extra elements – above header #800415Jordan,
Thanks for the speedy response.
I downloaded Constant Contacts official plugin and made a form with just the email field.
It gives you a “short code” to add = [ctct form=”68″]So, not text or script…
Does this help?Thanks again,
ChrisHow do you style the phone number once you make it a hyper link with
<a>
also, how to style the color for the hover?
thanks
ccSarah,
Thanks for pointing me to this article – that worked!
I had to change it to “ACS” to get the results that I wanted – thanks again!Chris Cook
February 2, 2017 at 3:40 pm in reply to: Using Nav – Display as Icon with additional text in header #741842Rikard
Thank you. We did come up with a solution.I think a great add-on feature to Enfold would be to copy the exact programming for the footer and make it available as the header feature too.
There is a tab for Footer, you can choose how many columns you want (a drop down with 1,2,3,4) — if you could duplicate this in the HEADER tab that would be a great addition.The header is a very important part of a website – it is right at the top!!
Please consider this – can you put in a feature request???
Thanks,
Christhat worked perfectly
thanks and have a nice day.Awesome! Thanks!
Can I make them a little larger?
Thanks again,
ChrisI just sent this in the Private Content.
Thanks in advance – not sure what/where to get the placeholder value.
ChrisI am trying to add Houzz to my social icons as well. I went to Fontello.com and searched for Houzz and downloaded a ZIP file.
I added the this code to my child theme functions.php – using the zip file name…
I do NOT see Houzz in my social list however… did I do it incorrectly??
Thanks for your help in advance!Register new icon as a theme icon
function avia_add_custom_icon($icons) {
$icons[‘icon_name’] = array( ‘font’ =>’fontello-828d0fbb’, ‘icon’ => ‘houzz’);
return $icons;
}
add_filter(‘avf_default_icons’,’avia_add_custom_icon’, 10, 1);// Add new icon as an option for social icons
function avia_add_custom_social_icon($icons) {
$icons[‘Icon Label’] = ‘icon_name’;
return $icons;
}
add_filter(‘avf_social_icons_options’,’avia_add_custom_social_icon’, 10, 1);December 21, 2016 at 8:26 pm in reply to: How to Add a Sidebar to Pages/Posts without Sidebar Option #727270Yigit
Wow! Thank you so much.
Really appreciate this help.
ChrisDecember 16, 2016 at 9:24 pm in reply to: How to Add a Sidebar to Pages/Posts without Sidebar Option #725546Guys
thanks for writing back. if you go to the dashboard, click IDX pages, then Ted Baker.
this is a custom post type maybe?? anyway I went to widgets and made a widget called TedBaker and put what I want on the sidebar.these idx pages only seem to use the default sidebar.
i have 6 agents that will all need a widget for themselves. I am hoping to have the side bar “layout” standard controls on the side so that I can choose what sidebar goes on each idx page
make sense?
thanks in advance,
chrisThank you guys!
ChrisI am having the same issue on http://www.chrishudsoncouture.com/new/
when on mobile and tablet the full screen slider does not scale – you can’t even tell what the images are.
The h1 font doesn’t scale either…. did I do something wrong?
Thanks in advance,
ChrisWhen I used this code, including the hover line at the end, it cuts my social icons in half, missing the bottom half.
Ideas?
ChrisThanks!!!
ChrisYigit,
That worked – – – but it made the Yelp Icon disappear.
Please let me know.Chris
Yigit
Thanks – that workedWhile I have your help – how can I make them larger and a little further apart???
Chris
Thanks for the speedy response.
There are many choices on that page
1. not sure which one to use
2. do I delete what I added to functions.php in child theme first and add the one you tell me OR is this in addition to what I have put there?Thanks,
Chrishere you go.
Have you guys considered just adding Yelp to the theme??? It would be useful.
ChrisCan someone help???
I followed this thread and it did not work… I see a red dot when I rollover where the Yelp icon is to be but nothing there but white space and then a dot when rollover…
I added this to functions.php on my child theme:
add_filter(‘avf_default_icons’,’avia_add_custom_icon’, 10, 1);
function avia_add_custom_icon($icons)
{
$icons[‘yelp’] = array( ‘font’ =>’fontello’, ‘icon’ => ‘ue800’);
return $icons;
}add_filter(‘avf_social_icons_options’,’avia_add_custom_social_icon’, 10, 1);
function avia_add_custom_social_icon($icons)
{
$icons[‘Yelp’] = ‘yelp’;
return $icons;
}And this to the Quick CSS:
#top #wrap_all .av-social-link-yelp:hover a {
background-color: red;
color: white;
}
#top #wrap_all .av-social-link-yelp: a {
background-color: white;
color: red;
}Thanks in advance.
ChrisJuly 11, 2016 at 6:06 pm in reply to: How do you create a Custom Header with 3 Columns – Enfold #659456Andy,
Thanks. The social worked great and I tweaked it with CSS – looks nice – thanks again.However, the left side header – adding widget did not.
When I added the code to function.php the whole site went white screen.The last lines of functions.php were:
/*
* register custom functions that are not related to the framework but necessary for the theme to run
*/require_once( ‘functions-enfold.php’);
/*
* add option to edit elements via css class
*/
// add_theme_support(‘avia_template_builder_custom_css’);I tried to add it in several areas within these last lines including the very bottom. I also made sure that there was not a “blank” last line… It did not work… this is the functions.php in the main ENFOLD theme folder… I have a child theme – tried placing the code you mention in that child theme too.. did not work.
Can you tell me where to place your code of – –
add_action( ‘ava_main_header’, ‘enfold_customization_header_widget_area’ );
function enfold_customization_header_widget_area() {
dynamic_sidebar( ‘header’ );
}Thanks again for your help!
ChrisJuly 8, 2016 at 3:33 pm in reply to: How do you create a Custom Header with 3 Columns – Enfold #658478Yes, thank you.
The website in development is at http://reesehouse.msdev.info/ and the layout is at – http://reesehouse.msdev.info/reese-house-layout.jpg
for reference.
thank you again for answering this for us.
chrisMay 20, 2016 at 5:18 pm in reply to: How to Make aCustom Header with logo left, Tagline/phone middle and social right #635977I figured it out. thanks anyway.
I assumed the Add a Widget would take care of the functions.php – apparently it does not.
thanks,
chrisMay 20, 2016 at 2:47 pm in reply to: How to Make aCustom Header with logo left, Tagline/phone middle and social right #635913Here you go… thanks in advance. chris
-
AuthorPosts