-
AuthorPosts
-
July 8, 2016 at 5:01 pm #658500
Hi guys,
I’ve successfully used your documentation to add a new, custom widget to the header area (i’ve named them header1 and header2).
The code in the functions.php file for the two headers are:add_action( 'ava_after_main_menu', 'enfold_customization_header_widget_area' ); function enfold_customization_header_widget_area() { if(is_front_page()){ dynamic_sidebar( 'header1' ); dynamic_sidebar( 'header2' ); } }
However, the two custom widgets needs to be located two different places, but for some reason the CSS code wont work properly since both custom widget headers are only affected by the #header2 .widget code (below):
/* Header clock CSS */ #header1 .widget { left: 91%; padding-top: 0px; position: absolute; top: 80%; padding-bottom: 0px; z-index: 1; } /* Header ticker CSS */ #header2 .widget { left: 75%; padding-top: 0px; position: absolute; top: 90%; padding-bottom: 0px; z-index: 1; }
July 8, 2016 at 5:31 pm #658507Hey Dbertelsen,
Would you mind providing a precise link to your site, showing the elements in question? We need to be able to inspect them in order to help :)
Best regards,
YigitJuly 8, 2016 at 5:51 pm #658516Hi Yigit,
Yes of course. I’ve provided it in the Private Content sectionJuly 11, 2016 at 3:26 pm #659332Hi,
authentication login is needed and credentials you’ve provided do not work for it. Please check.
Best regards,
AndyJuly 11, 2016 at 3:28 pm #659333Oh sorry,
Try again now- This reply was modified 8 years, 4 months ago by Dbertelsen.
July 11, 2016 at 3:43 pm #659351Hi,
I can see one header widget only. Where is the 2nd?
Best regards,
AndyJuly 11, 2016 at 4:01 pm #659383Hi Andy,
If you go to Appearance -> Widgets -> You will see two headers named header1 and header2. One contains a clock and another contains a tiny stock ticker (shortcode) :)Andin the functions.php file I have the following code:
// Below code is to only show header clock on front page add_action( 'ava_after_main_menu', 'enfold_customization_header_widget_area' ); function enfold_customization_header_widget_area() { if(is_front_page()){ dynamic_sidebar( 'header1' ); dynamic_sidebar( 'header2' ); } }
And I have the following Custom CSS styles:
/* Header Widget header1: clock CSS */ #header .widget { left: 91%; padding-top: 0px; position: absolute; top: -100%; padding-bottom: 0px; z-index: 1; } /* Header Widget header2 Stock Ticker */ #header2 .widget { left: 50%; padding-top: 0px; position: absolute; top: -20%; padding-bottom: 0px; z-index: 1; }
July 12, 2016 at 11:53 am #659755Hi,
Please update the theme to the latest version. That should fix any issues you are currently experiencing :)
To update to the latest version follow the simple instructions here. (Or if you want the super detailed explanation you can read this blog post)
If that does not help, feel free to reply here and we will take a closer look at the issue. In that case please also add your WordPress login credentials (in the “private data” field) so we can take a look at your admin area
Best regards,
AndyJuly 13, 2016 at 5:14 pm #660504Hi Andy,
Wont an update override my current modifications/settings/designs? I am running in a child theme, but still?July 16, 2016 at 2:46 am #661586Hi,
The “#header2 .widget” selector is incorrect. Use “#header #text-8” instead. This is the proper selector for the stock ticker.
Best regards,
IsmaelJuly 21, 2016 at 12:29 pm #663341Thanks a lot Ismael! You’re the man!
July 21, 2016 at 12:41 pm #663363Hi,
glad Ismael could help you. Let us know in a new ticket if you have some more questions related to the theme. We are happy to assist you.
Best regards,
Andy -
AuthorPosts
- The topic ‘Custom CSS for two custom widget headers?’ is closed to new replies.