Jump to content
Sign in to follow this  
texter

Footer Customization

Recommended Posts

texter

Howdy -

I'm having difficulty identifying which class I need to edit in order to change two things.

I'm adding class specifications in the Paglines "Site Options" code window

1) the bottom border of widget titles

#footer li {list-style-type:none; color: #777777;}

#footer li a:hover {text-decoration: underline; color: #c6870d;}

2) the text color and hover color of footer elements

hr, .fpost, .clip_box, .widget-title, .metabar a, #morefoot .widget-title, #site #dsq-content h3, .navigation_wrap{

/** border-bottom: 1px solid transparent; **/

border-bottom: 1px solid #000;

}

Neither of these snippets are effective. Can you help me identify why they aren't working, or which classes I need to customize?

Thanks.

Share this post


Link to post
Share on other sites
James B

Hi there,

Can you provide us with an active url, I've looked at the link you have attached to your account and there are no widgets in the footer on that site. Please let us see the url and we'll try and help you track down the css.


Kindly search the forum and read the documentation before posting. It will help you resolve many issues.

For CSS help be sure to check out W3Schools first and be sure to download FireBug for FireFox for troubleshooting.

James B

Share this post


Link to post
Share on other sites
James B

Ok looking at the link the widget titles aren't entered into the 'title' field in the widget, therefore they're appearing along with the text inside the widget and don't have a separate class you can edit. So you'll need to move the headings into the title field in order to apply an underline and edit them separately from the rest of the widget content.

To change the color of the footer text use the below code.


#sb_footcols .textwidget {

    color: #ffffff;

}

As most of the content in the columns are links, you'll be able to change the color of them using this code

#footer a, #footer li h5 a {

    color: #BE4D4D;

}

Hope that helps

  • Like 1

Kindly search the forum and read the documentation before posting. It will help you resolve many issues.

For CSS help be sure to check out W3Schools first and be sure to download FireBug for FireFox for troubleshooting.

James B

Share this post


Link to post
Share on other sites
texter

Thanks very much - that resolves my footer issue.

I didn't clarify sufficiently for the other issue: it's the think stroke (bottom border) that appears beneath the widget title in the "secondary sidebar" area.

I've tried making a stronger bottom border by using:

hr, .fpost, .clip_box, .widget-title, .metabar a, #morefoot .widget-title, #site #dsq-content h3, .navigation_wrap{

/** border-bottom: 1px solid transparent; **/

border-bottom: 1px solid #000;

}

but bottom border for the widget titles in the secondary sidebar is barely legible - I'm not targeting the right class. Any pointers greatly appreciated.

Share this post


Link to post
Share on other sites
James B

Ah ok, try this


.widget-title {border-bottom: 2px solid #000000 !important;

}


Kindly search the forum and read the documentation before posting. It will help you resolve many issues.

For CSS help be sure to check out W3Schools first and be sure to download FireBug for FireFox for troubleshooting.

James B

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

    • 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?
    • yasinyaqoobi
      By yasinyaqoobi
      In the footer of my website, I can't find where Leasing is located. I have to remove it.
       
      http://grandavenueshops.com/
       
       
    • 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
×