Jump to content
Sign in to follow this  
lroberts00

CSS help

Recommended Posts

lroberts00

Hi,

I need some CSS help on a site I am doing.

 

http://www.lrdclients.com/demo/

 

Can someone please help me with how to make the boxes centered with the text or both boxes and text aligned to center or left?

 

Thank you!

Share this post


Link to post
Share on other sites
catrina

As always, please follow the CSS instructions here: http://support.pagelines.me/docs/customization/custom-css. For help with the text-align attribute, please see these instructions: http://w3schools.com/cssref/pr_text_text-align.asp (use text-align: center to center the text).


Please read the docs before posting. Please do not private message me unless I ask you to.

Designer | Catrina Dulay

Founder | Catrina and Mouse

Share this post


Link to post
Share on other sites
Rob

Hi,  Boxes has a Meta Setting that allows you to set the alignment of the image to left or on top (center). Left usually means that the image is inset like a thumb.

 

CSS for boxes is not hard to do with Firebug for Firefox.

 

Your images, I see, have a wide area surrounding the rounded-corner picture.  That area (the image's background) is transparent, and so it's the image keeping the picture centered presently.  To affect a CSS solution, you'd need an image without the wide, transparent background.

 

If you want to keep the images like that, you'd need something like this:

.fboxinfo {
    overflow: hidden;
    padding: 5px 0 0;
    text-align: center;
}

Of course, you'd have to adjust the padding and experiment with the look.

  • Like 1

Former PageLines Moderator, Food Expert and Raconteur

Share this post


Link to post
Share on other sites
lroberts00

Thats it One Smart Egg! Thank you so so much for your help!

Share this post


Link to post
Share on other sites
Rob

You're very welcome!


Former PageLines Moderator, Food Expert and Raconteur

Share this post


Link to post
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now

Sign in to follow this  

  • Similar Content

    • Moti
      By Moti+
      Help! When I use the following code from mailchimp pop up form  in plattform 5 the "x" button to remove the pop up form is not working. What can I do?
      <script type="text/javascript" src="//downloads.mailchimp.com/js/signup-forms/popup/unique-methods/embed.js" data-dojo-config="usePlainJson: true, isDebug: false"></script><script type="text/javascript">window.dojoRequire(["mojo/signup-forms/Loader"], function(L) { L.start({"baseUrl":"mc.us4.list-manage.com","uuid":"3d0148c559e497e53905c6907","lid":"f0cfc283fc","uniqueMethods":true}) })</script>  

    • gstrahle
      By gstrahle+
      Hi,
      I am hoping to figure out how I can get my PageLines Full Nav to display layered in front of a sticky footer element on my website - 3keymedia.com
      I would like the Full Nav to overlay the entire screen when opening the menu as you will see when opening on a desktop the footer of nav content is cropped by the sticky footer.
       
      Thanks


    • Christian
      By Christian+
      Hi everyone, since Instagram had allowed to publish in different ratio formats (instead of only square ratio) the grams stripe has different heights. Can you tell me if i can fix it easily with some CSS?
    • Michael Kummer
      By Michael Kummer+
      Hi guys!
      I have noticed that my primary sidebar becomes intermittently invisible when browsing through various blog articles on michaelkummer.com/blog.
      See:
      https://www.dropbox.com/s/z646sgoa3mfjl1j/Screenshot 2018-07-12 15.57.46.jpg?dl=0 and https://www.dropbox.com/s/vdledzzgginvwgv/Screenshot 2018-07-12 15.57.57.jpg?dl=0
      Upon refresh, the sidebar appears. I have been using the following CSS code to hide the sidebar on mobile without any issues. 
      @media only screen and (max-width: 993px) {
      /* hide sidebars */
           .plsb {
              display: none !important;
          }
      }
      I tried to add the following CSS to force the sidebar to show on screens that are wider than 994 pixels but to no avail. Any clue what could be causing this issue?
    • Michael Kummer
      By Michael Kummer+
      Hi guys!
      I am using the LESS/CSS Pagelines extension and tried to add the following code to make use of FontAwesome:
      a.c2a:before {
          content: "\f07a\00a0";
          font-family: "Font Awesome 5 Pro";
          Font-weight: 900;
          font-style: normal;
          font-weight: normal;
          text-decoration: inherit;
          padding-left: 4px;
      }
       
      The issue is that as soon as I have the CSS via the Custom Styling text box, Pagelines (or the extension) strips out the backslashes (\). As a result, I had to abandon the CSS/LESS extension and instead add all my CSS code to a separate .css file.
      Is there a fix or workaround for this?
      Thanks
      Michael
×