Viewing 14 posts - 1 through 14 (of 14 total)
  • Author
    Posts
  • #1125746

    Hi,
    My title on the footer widget (columns 1-3) is centered. Can you advise how to set the alignment of each title to left aligned. (I don’t want to change the alignment of the body text underneath as it is already left aligned.)

    I guess this needs some code to go in the Quick CSS in Enfold theme options under General Styling tab. I already have this code in place there and am unclear what it means:
    span.news-time {
    display: none;
    }

    Please advise.
    Thanks

    #1125773

    Hey sizzler65,

    Please provide a link to the site/page in question so we can look into this issue further.

    Best regards,
    Jordan Shannon

    #1125927

    Hi Jordan,

    Here is a link to the home page. Please look at the footer section. It is the Title headings ‘Ask a question’, ‘Hxxx Sxxxx Tutors’ and ‘About’, that I wish to left align. They are three footer widgets.

    Also, with the image in the ‘About’ footer widget – how can I increase the size of the caption text underneath? It is text included in the caption field on the Image Details.

    Thank you

    #1126104

    Hi,

    Thanks for that. Please try the following in Quick CSS under Enfold->General Styling:

    Titles:

    #footer .widgettitle {
        padding-left: 0;
        text-align: left;
    }

    Caption:

    #footer .wp-caption-text {
        font-size: 15px;
    }

    Best regards,
    Rikard

    #1126123

    Hi,
    Sorry, but inserting this code has made no difference to the appearance of the website. I am using a child theme.
    Any more suggestions please?
    Thanks

    #1126197

    Hi,

    Delete the old CSS and JS files under Enfold->Performance.

    Best regards,
    Rikard

    #1126292

    Hi,
    Did that and still no difference to the footer section headings alignment, or size of (image) caption text.
    What is next?
    Thank you

    #1126298

    Hi,

    2 things:

    1) Try and add the code to the very top of quick css so it runs first. Also, be sure sure to clear the cache after.

    2) If you have any custom css currently in place, check and ensure that there are no errors in the formatting. This can prevent the additional css from running.

    Best regards,
    Jordan Shannon

    #1126328

    Hi,
    Still no result. What next?
    Thank you

    #1126409

    Hi,

    Please try this instead:

    #footer .widgettitle {
        padding-left: 0 !important;
        text-align: left !important;
    }
    
    #footer .wp-caption-text {
        font-size: 15px !important;
    }

    Best regards,
    Rikard

    #1127380

    Hi Rikard,
    Sorry for my slow reply.
    Good news. Your solution fixed the headings alignment (to the left) and size of caption text. Thank you very much.
    Here is the full code used:-
    #footer .widgettitle {
    padding-left: 0 !important;
    text-align: left !important;
    }

    #footer .wp-caption-text {
    font-size: 18px !important;
    }

    span.news-time {
    display: none;
    }

    Out of interest, do you know what this last bit of code does?
    span.news-time {
    display: none;
    }

    I can’t remember where I got it from as I have been working on this site for over a year. But I think it was probably some code on the forum answers. I can’t identify what it does and want to know if I can delete it safely.

    Thanks again
    Simon

    #1127397

    Hi,

    Looks like the last bit is hiding the date on blog posts.

    Best regards,
    Jordan Shannon

    #1127398

    Thanks. That makes sense.
    Please consider this thread as SOLVED.

    #1127416

    Hi,

    I’m glad this was resolved. If you need additional help, please let us know here in the forums.

    Best regards,
    Jordan Shannon

Viewing 14 posts - 1 through 14 (of 14 total)
  • The topic ‘Footer widget title – text alignment’ is closed to new replies.