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

    Hi Guys,

    Great to see Enfold selling so well!

    I’ve got a couple of questions that I should be able to solve but:

    1. Logo vertical position. How do I nudge the logo down to sit vertically aligned in the middle? I used some padding CSS but then my sticky logo became super tiny.

    http://www.theweblounge.co.uk/kworum/

    2. Easy Slider Caption position. Is it tricky to move the captions around a little?

    3. Easy Slider description. How can I target the font size of the Easy Slider sub header without affecting all my p fonts?

    Thanks very much!

    Christian

    #301454

    Hi Christian!

    1. Try adding this code to the Quick CSS:

    .logo {
        top: 10px;
    }
    .header-scrolled .logo{
        top: 0;
    }

    2. Where do you want to have them?, you can try something like this (adjust as needed):

    .caption_left .slideshow_caption {
        left: 4px;
        top: 6px;
    }

    3. Add this:

    .slideshow_inner_caption p {
        font-size: 24px !important;
    }

    Regards,
    Josue

    #301975

    Hi Josue,

    Thanks for much for that. Perfect! A couple more small questions if I may:

    1. Is possible to have an icon box without the icon? And an you also give me the CSS to change the background colour. I’m looking to create simply a coloured content box for text.

    2. I’m assuming there is not an option to create full-browser-width content in Enfold. Am I correct?

    Many thanks indeed.

    Regards,

    Christian

    #302049

    Hi Christian!

    1. Use a Text block with a class assigned, then color it with CSS:

    .colored_textblock{
    background: red;
    padding: 20px;
    }

    2. You can use a Color Section with an ID assigned, then to make its content full width:

    #fullwidtharea .container{
    width: 100% !important;
    }

    Regards,
    Josue

    #303413

    Hi Josue,

    Thanks for your support on this. Terrific – never thought you could do stuff like that so easily.

    One final question before I finish this site.

    http://www.theweblounge.co.uk/kworum/

    I have some Single Images on the page linking to Lightbox. How can I get the Image WP Caption or Description (as inputed in the Media Library not the overlay caption) to display in the lightbox popup below the image?

    Thanks as ever!

    Regards,

    Christian

    #303445

    Hey Christian!

    Try setting the caption here too:

    Cheers!
    Josue

    #303465
    This reply has been marked as private.
    #303479

    Hey Christian!

    It should work now, i fixed something in js/avia.js.

    Regards,
    Josue

    #303480

    Hey Josue,

    I wondered how that happened. I suddenly saw the captions! Brilliant.

    Will they disappear if I update the theme?

    Thanks!

    Christian

    #303481

    Hi Christian!

    No, this will be included in the next update.

    Regards,
    Josue

    #303482

    Josue, thank for all your help.

    The site’s done and the client says there won’t be another Angolan bank with a site like this…ever! Only possible with your demos and support.

    Finally for the night, I’ve never used a child theme before. When I tried once I lost all my styling and had to start again – with another theme btw. I had not even touched the theme files. I lost the theme settings in the dashboard. Hence I’m scared of trying again!

    Do you have a guide for using a Child Theme, especially once you’ve already created the site, like in my case now, so I don’t lose file customisation? Or must you set up the Child Theme before you start?

    Thanks again.

    Christian

    #303485

    Josue, sorry one more thing!

    How can I customise the height of colour sections:

    1 Alter the Large Padding value for example?

    2. Alter the minimum display from 25%, 50%…i.e. change to 40%?

    Thanks and good night!

    Christian

    #303495

    Hi Josue,

    I’ve noticed one more anomaly.

    When I reduce to Tablet Portrait my logo actually gets larger than it is at Desktop. It tries to fill the height of the Tablet header and pixelates. BTW the logo is 180px wide.

    http://www.theweblounge.co.uk/kworum/

    Is there a fix?

    Thank you very much.

    Christian

    #304705

    Hey Christian!

    For the logo issue, try adding this code to the Quick CSS:

    @media only screen and (max-width: 767px) {
        .responsive #top #header .logo img{
            max-height: 73px !important;
            height: 73px !important;
            top: 5px;
        }
    }

    Regarding altering the color section padding:

    #colorsectionid .content{
    padding: 20px 0 !important;
    }

    If you want to change the height you’d need to set a fixed value, like:

    #colorsectionid{
    min-height: 400px;
    }

    If you use a Child Theme on an already created site you can use the Import Parent Theme settings button (Enfold > Import/Export) to avoid building it again.

    Cheers! 
    Josue

Viewing 14 posts - 1 through 14 (of 14 total)
  • You must be logged in to reply to this topic.