Viewing 17 posts - 1 through 17 (of 17 total)
  • Author
    Posts
  • #1438823

    Hello everyone
    I have added a footer here
    link below:

    is it possible that this footer is only displayed on this page (page nr 3288) is displayed.

    thanks in advance
    child reagards
    Francis

    #1438824

    Excuse me
    one more addendum:
    that this footer is only displayed on the pc.

    Thank you

    #1438841

    Hi,
    This assumes that you want the footer to show only on this page at screen sizes over 1440px, feel free to adjust to a different screen size if you wish.
    Try this CSS in your Enfold Theme Options ▸ General Styling ▸ Quick CSS field:

    @media only screen and (min-width: 1440px) { 
    #top:not(.page-id-3288) #footer {
    	display: none;
    }
    }
    @media only screen and (max-width: 1439px) { 
    #top #footer {
    	display: none;
    }
    }

    After applying the css, please clear your browser cache and check.

    Best regards,
    Mike

    #1438848

    Hello Mike
    Thank you very much

    that works great

    can i also create another footer at page nr 3593
    I would then also have to specify the title of the widget

    The current title has the name “In eigener Sache:”

    or would that work differently

    thanks
    kind regards
    Franz

    #1438852

    Hi,
    I recommend creating different widgets in your footer and use the plugin Widget Options to show each widget on specific pages and then use css like above to hide the footer on all other pages.

    Best regards,
    Mike

    #1438856

    Hello Mike
    Thank you very much
    I have now tried that:

    after the first widget
    footer -column 1
    still a
    footer – column 2
    was created.
    which is added to the css as below

    now there is no footer visible anymore

    what am i doing wrong

    thanks
    kind regards
    Franz

    #1438858

    Hi,
    Try this CSS instead in your Enfold Theme Options ▸ General Styling ▸ Quick CSS field:

    @media only screen and (min-width: 1440px) { 
    #top:not(.page-id-3288,.page-id-3593) #footer {
    	display: none;
    }
    }
    @media only screen and (max-width: 1439px) { 
    #top #footer {
    	display: none;
    }
    }

    Best regards,
    Mike

    #1438880

    Hello Mike
    Thanks for this CSS
    Now on both pages: left below:
    both footers are displayed.

    is it not possible that on the page “bild-suchen” only the footer column 1 is displayed and on the second page “videos” the footer column 2.

    Then I don’t understand why the title of the widget is displayed in bold on the “videos” page.

    Thanks for your efforts
    Kind regards
    Franz

    #1438887

    Hi,
    This css was to be used with the plugin Widget Options that I recommended above, to show each widget only on specific pages.
    This will really make it easy for you as you add more widgets for more pages, or if you change the widgets in the future.
    And originally you had the widget in a single column that was full width, place both widgets in the same column so they will be centered, right now you have two half columns which will not center.

    Best regards,
    Mike

    #1438893

    Hi Mike
    thanks for your answer

    now I have the widget again in a single column that goes across the whole width

    However, these are now displayed on both sides

    my wish would be
    bild-suchen = in eigener Sache
    and the other on the second page
    videos = über unser Videos

    thanks
    kind regards Franz

    #1438921

    Hi,
    You don’t want to try the plugin? I’m recommending this so you will be able to easily make changes in the future.

    Best regards,
    Mike

    #1438924

    ji mike
    I have installed the plugin
    but it is very complicated for me to configure it
    my english is not so good ?

    what do i have to do now

    best regards
    Franz

    #1438925

    I have now installed it on two other sites
    but i don’t know how to set it up
    that you only see it on one page

    thanks for your help mike

    #1438937

    Hi,
    Thanks for the login, you go to the widget and the use “Show on checked page” then start typing the name of the page and it will auto fill the name of the page:
    Enfold_Support_5250.jpeg
    I did this for you so you can see.

    Best regards,
    Mike

    #1438958

    Hello Mike
    Thank you very much, that fits perfectly

    I’ve now done the whole thing at
    Link below: made
    works great.

    then i added the widget title to the advanced styling
    and made the font black.

    I don’t understand why this doesn’t work with video?

    thanks
    kind regard
    Franz

    the css code see below:
    is that it is only displayed on the PC:

    what should i change so that the footer is also displayed on the tablet?

    (max-width: ? px)

    #1438986

    Hi,
    To change the color of the widget title for both pages try this css:

    #top #wrap_all .all_colors .widgettitle,
    #top #custom_html-2 > h3.widgettitle {
    	  color: #000000;
        text-transform: none;
        font-size: 23px;
        font-weight: 200;
    }

    to show the footer on tablet you need to change the css to show for tablet, we will say it is 768px, so use this:

    @media only screen and (min-width: 768px) {
    #top:not(.page-id-3288,.page-id-3593) #footer {
    display: none;
    }
    }
    @media only screen and (max-width: 767px) {
    #top #footer {
    display: none;
    }
    }

    some tablets are different sizes like 1024px & 1366px, but 768px should cover all of them.

    Best regards,
    Mike

    #1438990

    Hello Mike
    Thanks, everything fits perfectly now.

    Your support is always perfect

    you can close this request.

    kind
    regards
    Franz

Viewing 17 posts - 1 through 17 (of 17 total)
  • The topic ‘only on this page’ is closed to new replies.