• Resolved markopete

    (@markopete)


    I have addded the title as directed in the docs.

    I would like to move the title to bottoe center, currently it is left.

    I tried changing the font color to E6632B but it hasnt stuck?

    Finally how can I change the font size and make it bold.

    http://audioforbooks.com

    Thanks in advance, Love the plugin 🙂

    Pete

Viewing 8 replies - 1 through 8 (of 8 total)
  • Plugin Author Josh Leuze

    (@jleuze)

    Hi Pete, try adding the CSS from the documentation as well.

    If you customize it like this it should be closer to what you need:

    .meteor-slides p {
        bottom: 0;
        left: 0;
        color: #E6632B;
        font-weight: bold;
        margin: 0;
        padding: 5px;
        position: absolute;
        text-align: left;
        width: 100%;
    }
    Thread Starter markopete

    (@markopete)

    Hi JLeuze
    I have replaced the code from the doc with this one, I tried changing align from left to center but it still stays left.
    If I could increase the font size all should be well 🙂

    Plugin Author Josh Leuze

    (@jleuze)

    If you inspect the page with Firebug, there is a rule in there that is forcing the text to be justified:

    .custom .format_text p, .custom .format_teaser p, .custom .archive_intro p {
        text-align: justify;
        text-indent: 0.5em;
    }

    So if you make the rule for the slideshow titles more specific, it will override that:

    .custom .meteor-slides p {
        bottom: 0;
        color: #E6632B;
        font-weight: bold;
        left: 0;
        margin: 0;
        padding: 5px;
        position: absolute;
        text-align: left;
        width: 100%;
    }

    I would recommend using a custom stylesheet so that you don’t lose your changes when you update the plugin.

    Thread Starter markopete

    (@markopete)

    Sorry, I’m a little confused, do you mean the above code into my themes custom.css, I tried that but no change

    Plugin Author Josh Leuze

    (@jleuze)

    Sorry, that was the wrong link, you need to copy the plugin’s meteor-slides.css stylesheet into your theme: http://www.jleuze.com/plugins/meteor-slides/customizing-the-stylesheet/

    Thread Starter markopete

    (@markopete)

    It does in part at least seem to be working, my remaining issues are the image paths, I cant seem to work out the correct path.

    The title still stays left and ideally I would like to increase the font size.

    Thank you for your help so far 🙂

    Thread Starter markopete

    (@markopete)

    Please disreagrd my previous post. I have sorted it all out 🙂

    Plugin Author Josh Leuze

    (@jleuze)

    That’s good to hear!

Viewing 8 replies - 1 through 8 (of 8 total)

The topic ‘Customize the Title’ is closed to new replies.