Forum Replies Created
-
AuthorPosts
-
That´s awesome Josue. I wasn´t aware of that. Thanks a ton.
Cheers
MichaelWill try. thanks so far
Hmmm…any other idea? It doesn´t work that way when I add it to a pure HTML page. It only works when I add it into the text editor of WordPress but that´s not what I need.
Thanks Josue. Will check ´em out.
Best
MichaelSimple as that ;-) Thanks Dude!
I can only see the link http://www.bilfinger.com/unternehmen/ you posted. And as I said my example might not be exactly what you want but it might act as some kind of inspiration.
I don´t think that you can do exactly what you show in your link at the Bilfinger website with Enfold but the specialists might correct me.
Cheers
MichaelHi there,
well, not far away from what you want is what I did in this project: http://congress.automotiveit.com/
It´s the fullscreen slider element with only one image (so it doesn´t slide) and the top navigation and logo is set to display:none via CSS.
Or you can simply do something like I did with my own website: http://www.der-prinz.de/ where I used the full screen slider again and the transparency options for the logo and menu header.
Hope this inspires you
MichaelHi there,
well, not exactly what you want I assume but I did something similar in another project: http://www.engelag.de/
We have a different “header” image (well it´s not really the header I know) on every page.Just as an inspiration.
Cheers
MichaelWhy not create the blog page with the advanced layout editor? You can then use the blog entries element which can easily exclude certain categories from the display. That works perfect.
Cheers
MichaelHi Josue,
I extendet the filter to display the title based on the category the post is in:
// Change the Blog Title based on the category the post is in add_filter('avf_title_args', 'fix_single_post_title', 10, 2); function fix_single_post_title($args,$id) { if ( $args['title'] == 'Blog - Die aktuellsten Neuigkeiten' && in_category ('termine')) { $args['title'] = 'Termine'; // <-- Title $args['link'] = ''; // <-- Link $args['heading'] = 'h2'; } elseif ( $args['title'] == 'Blog - Die aktuellsten Neuigkeiten' && in_category ('news')) { $args['title'] = 'News'; // <-- Title $args['link'] = ''; // <-- Link $args['heading'] = 'h2'; } return $args; }
By the way: Where is the default title defined?
Cheers
MichaelRock ´n Roll! Works great.
Thanks
MichaelAwesome. Works.
Sure. The page “Pressecenter” is a subpage of “Unternehmen” you can see that in the URL as well
…/unternehmen/pressecenter/
Well for some reason it seems the css doesn´t get recognized
I added
.header_color .main_menu ul:first-child > li.active-parent-item > a .avia-menu-fx { opacity: 1!important; visibility: visible!important; }
to my child themes style.css file
- This reply was modified 10 years, 6 months ago by Michael Oeser.
This reply has been marked as private.You were faster than I was ;-)
But unfortunately it doesn´t seem to work
Just to make it a bit clearer. See screenshot at https://dl.dropbox.com/s/34zdf0lemls635p/index.html
This is how it looks like on the mainpage “Leistungen” and I´d like to have that also highlighted the same way if I´m on a subpage of the main page “Leistungen”
Thanks again
Michael- This reply was modified 10 years, 6 months ago by Michael Oeser.
Got it. Thanks. But I did in in my child themes CSS not in the Enfold grid.css which seems a bit smarter to me ;-)
Thanks. That worked
That´s strange indeed. Because without the links it wasn´t effected by the display:none and with the link it is affected. Well actually I was able to solve it and still leave the news slider image in the red box on top right at display:none which I need to.
Thanks for the quick response.
- This reply was modified 10 years, 6 months ago by Michael Oeser.
Works great. Thanks
Thanks again Josue. This works great even if Codestyling Localization still doesn´t detect the Child theme but I can translate the .mo file in the parent and move it over to the child theme.
By the way there is an error in Peters codesnippet. There is a <br /> tag in it that shouldn´t be there. The right one is
add_action(‘after_setup_theme’, ‘avia_lang_setup’);
function avia_lang_setup()
{
$lang = get_stylesheet_directory() . ‘/lang’;
load_child_theme_textdomain(‘avia_framework’, $lang);
}Cheers
– MichaelHi Josue,
what should I say? I´m impressed! that works like a charm and does what I need. Thanks a ton man.
Have a great time
– MichaelHi Josue,
that is AWESOME!
The only thing that´s missing is I can´t add custom css to columns because columns don´t have an editor. What I need to achieve is what you see in the screenshot here: https://dl.dropbox.com/s/0v9ui4zywfrlc68/index.html
You can see that any of the three columns has an individual bg image. I did with this CSS for example:
#unternehmenkacheln .avia-builder-el-9 {background:url(images/bg-kacheln/kachel-team.jpg) no-repeat!important;background-size:cover!important;}
In this case .avia-builder-el-9 is the first column element inside a color section with the ID #unternehmenkacheln. That works as long as I don´t add/remove an element because then the class of the column changes. Maybe it´s not hte best idea to ad the bg image to the colum element itself but I have no other idea.
Any other idea how to create a box like this that has a bg image and can hold a text container element where I can add text and links etc.
Cheers
– MichaelThanks Peter. Topic solved.
Hi Yigit,
of course that makes them invisible but isn´t there a way to remove them. display:none is not what I call best practice ;-)
And it doesn´t remove it from everywhere.Cheers
Michael- This reply was modified 10 years, 7 months ago by Michael Oeser.
Thanks Kriesi for making that clear.
Maybe one more thing. If you would decide now would you still go with LayerSlider or choose Slider Revolution? Or ist that “Total egal” ;-)Keep going with the great work.
- This reply was modified 10 years, 8 months ago by Michael Oeser.
I figured out that with the new 2.5.x version I can select to either attach a button or a link right to the image of the “slide”. Would be great to have both options together.
January 15, 2014 at 10:42 am in reply to: Inspiration needed: Frontpage with fullscreen pic and alternative menu #209967Basically that works but the slider isn´t full page then and the menu remains complete transparent even when the page is scrolled. That makes it almost invisible in fact.
So this might be a good starting point but not a real solution. Thanks anyway.
January 14, 2014 at 7:15 pm in reply to: Inspiration needed: Frontpage with fullscreen pic and alternative menu #209625In addition: The way the menu and slider at http://demo.qodeinteractive.com/elision/ is exactly what I want to achieve. But of course I don´t want to go away from Enfold just because I love it ;-)
Cheers
Michael -
AuthorPosts