Navigation
This is archived content. Visit our new forum.
  • Author
    Posts
  • #110214

    dcormack
    Participant

    Hi
    Is it possible to force 2 word menu titles to wrap? Im using the Integrity stack with inline header menu – trying to keep 5 menus compact in desktop mode and accommodate a logo approx 25% of the header width.
    Alternatively can menu titles be replaced with buttons / icons?

    #110355

    Darshana
    Moderator

    Hi there,

    Thanks for writing in! To assist you with this issue, we’ll first need you to provide us with your URL as stated on the forum entrance page. This is to ensure that we can provide you with a tailored answer to your situation. Once you have provided us with your URL, we will be happy to assist you with everything.

    #110504

    dcormack
    Participant
    This reply has been marked as private.
    #110592

    Paul R
    Moderator

    Hi,

    Thank you for the url and login.

    To force a two word menu title to wrap you can simply add <br /> to it like this.
    http://screencast.com/t/fMuCBgcVnM

    To change the link of the newsletter.

    Can you try the code below.

    You can add this under Custom > Javascripts in the Customizer.

    
    jQuery(function($) {
        $('#post-257 a').attr('href','http://bit.ly/1tWStBy');
    });
    

    Hope that helps.

    #110859

    dcormack
    Participant

    Thank you – so simple!
    Moving on from these 2 mods, instead of 1 featured post image showing on the posts page, is it possible to have 2 featured images? One image which is text on background as I have already done (as a png) and a second image either hooked just below the 1st (to allow some headline description and a nice picture) somewhere on the post excerpt. Or should I have gone for a visual editor page in the 1st place? I didn’t because it was taking ages to compile and edit in content. Posts are much quicker to do the regular changing content.
    Thanks – really getting the hang of the possibilities with your help?

    #111001

    Kosher K
    Member

    Hi There,

    Im sorry, but I’m not really sure what you are trying to accomplish. Can you please provide more information.

    Do you want to modify the posts on the blog page and add additional image for each post? or are you trying to modify the single post layout?

    Can you please provide a URL of the page you are trying to modify and sample of what you are trying to accomplish.

    Thanks

    #111306

    dcormack
    Participant
    This reply has been marked as private.
    #111421

    Zeshan
    Member

    Hi Dcormack,

    Thank you for writing in!

    Regretfully this isn’t a feature offered by X. It could be possible with custom development, but this would be outside the scope of support we can offer. You may wish to consult a developer, or a service like WerkPress or Elto to assist you with this. X is quite extensible with child themes, so there are plenty of possibilities.

    However meanwhile, you can try enabling Full Post Content on Index under Blog > Content in the customizer (see: http://prntscr.com/4pupih) and in the post, upload the image at the top (see: http://prntscr.com/4puqe2) and add “MORE” tag to limit the content to show on for homepage.

    Next, to hide the title (see: http://prntscr.com/4puqrx) from the homepage, add the following CSS code under Custom > CSS in the Customizer:

    .home .entry-header {
       display: none;
    }
    

    Thanks for understanding. Take care!

    #111523

    dcormack
    Participant

    Thanks again – that gives me a good solution.
    Is there some code to close up th gap occupied by the blog title now disabled.

    #111584

    Cousett
    Member

    Try adding some CSS code under Appearance -> Customize -> Custom -> CSS

    .entry-content {
    margin-top: -0.75em;
    }
    #112084

    dcormack
    Participant

    Thanks
    Can you tell me where these lines of custom CSS and jscript are written to?
    Occasionally bits of code (using Edit Themes) breaks the site and I go to the child style.css functions.php to remove the faulty code using Filezilla. Is this in the db?

    #112121

    Paul R
    Moderator

    Hi,

    Yes, it is in the db.

    You can move all custom css in the customizer to style.css of your child theme
    if you want to. It will have the same effect.