Viewing 19 posts - 1 through 19 (of 19 total)
  • Author
    Posts
  • #425658

    I think it’s called padding. Is there anywhere I can change how close the text goes around a photo? They’re too crowded right now. I have the photo right aligned inside the text box. I don’t know CCS. I tried using colums, but then the left box with my bio was too long and thin and the photo had too much empty space under. Thanks

    #425770

    Hi dominiquehurley!

    Thank you for using Enfold.

    Please post the page url here. We would like to check it. Try this in the Quick CSS field:

    body .alignright, .entry-content-wrapper a:hover .alignright {
      float: left;
      margin: 5px 0 0 15px;
      display: block;
      position: relative;
    }

    Regards,
    Ismael

    #425874

    Hi Ismael,
    Take a look at the About Me section of http://50.87.248.159/~dominjd2/ (this is my test environment). If it shows up at your Enfold site, you need to choose Homev7 . I’ll be changing that today – I see I also got messages on how to change my menu.

    #425876

    Oh, I forgot to add. I’m a techy newbie, so no CSS field. Also, I’m not using a child theme (was too complicated), so if I play in CSS it will change with updates. I need detailed instructions on where to find things please when you respond. Much appreciated.

    #425888

    Hey!

    Please go to Enfodl theme options > General Styling tab and scroll to the bottom and you will see Quick CSS field. You can copy & paste the code Ismael posted there. As long as you do not change theme name, theme options will not change when you update the theme.

    Regards,
    Yigit

    #425921

    Scary and exciting – my first CSS. Thanks. It worked, but still a bit crowded. I’d like the standard to be the same as on my old WP.com site – see http://dominiquehurleyart.wordpress.com/ That’s a comfortable padding on the sides. Thanks.

    #425943

    Hey!

    Please change the code Ismael posted to following one

    body .alignright, .entry-content-wrapper a:hover .alignright {
      float: left;
      margin: 5px 0 0 20px;
      display: block;
      position: relative;
    }

    Regards,
    Yigit

    #425949

    Beautiful. Thanks. If I understand General Stylings, this will be for all the photos everywhere on the site, including in my blog?

    #425953

    Hey!

    This will be for all of your photos which are right aligned. If you need to apply similar changes to your other elements, please post the link to your page and point them out and we will provide you custom CSS code for those as well

    Best regards,
    Yigit

    #425960

    I will also need this for all photos left aligned (same padding around the right). For example, the photo in the paragraph Personal Symbolism at http://50.87.248.159/~dominjd2/2015/02/15/new-painting-the-holy-instant/

    #425963

    Hi!

    Please add following code to Quick CSS as well

    body .alignleft, .entry-content-wrapper a:hover .alignleft {
      margin: 5px 10px 0 0px!important; 
    }

    Cheers!
    Yigit

    #425965

    If I go into General Stylings, CSS, the other code I pasted for the Right Aligned is still sitting in there. Do I just paste it after? Do I need to press return after the } so that this code starts on a new line?

    #425967

    Hi!

    Yes, exactly. So both codes should be like following

    body .alignright, .entry-content-wrapper a:hover .alignright {
      float: left;
      margin: 5px 0 0 20px;
      display: block;
      position: relative;
    }
    body .alignleft, .entry-content-wrapper a:hover .alignleft {
      margin: 5px 10px 0 0px!important; 
    }

    Best regards,
    Yigit

    #425977

    OK – so if this happens again, do a hard return after the code. I haven’t done it yet, but looking at the numbers, the first has 5 and 20 and the second has 5 and 10. Won’t these look different? I’d like the larger padding standardized. Thanks – I won’t change anything yet.

    #425981

    Hey!

    These are margin values from left to right as “margin-top, margin-right, margin-bottom, margin-left”. You can adjust them as needed. And yes, it will look clearer if you do a return after closing one CSS code to start a new one. Using this codes, values will be standardised for those elements.

    Cheers!
    Yigit

    #425989

    Alas it didn’t work. see the first big photo in
    http://50.87.248.159/~dominjd2/2015/04/09/new-painting-ive-got-your-back/
    It’s left aligned and I put in the code below (changed the second one to 20 also) & pressed save, but when I refreshed the page, it didn’t show any difference. There’s no “float:” in the second code or “display:block: position: relative;” does that matter?

    body .alignright, .entry-content-wrapper a:hover .alignright {
    float: left;
    margin: 5px 0 0 20px;
    display: block;
    position: relative;
    }
    body .alignleft, .entry-content-wrapper a:hover .alignleft {
    margin: 5px 20px 0 0px!important;
    }
    (Also, the gallery of “Large” photos I put under are still showing up tiny … I think someone is working on that – another message – at least I hope so – all my galleries are not working)

    #426597
    This reply has been marked as private.
    #427522

    Hey!

    Please check margin values. There are two 20’s without px. Please change your code to following one

    body .alignright, .entry-content-wrapper a:hover .alignright {
    float: left;
    margin: 5px 0 20px 20px;
    display: block;
    position: relative;
    }
    body .alignleft, .entry-content-wrapper a:hover .alignleft {
    margin: 5px 20px 20px 0px!important;
    }

    Regards,
    Yigit

    #427647

    Perfect. I had replaced your 0 with 20, but hadn’t realized that if there is a number other than 0, you also need px. It fixed it. Thanks. Resolved.

Viewing 19 posts - 1 through 19 (of 19 total)
  • The topic ‘Text & photo in text box are too close – any way to add space?’ is closed to new replies.