Forums

The forums ran from 2008-2020 and are now closed and viewable here as an archive.

Home Forums CSS CSS Help

  • This topic is empty.
Viewing 11 posts - 1 through 11 (of 11 total)
  • Author
    Posts
  • #43601
    jrobin747
    Participant

    I’m at http://www.gospelrapper.org

    I have my blog set up where the home page shows latest blog post
    I have a post title showing up twice which is a bummer
    I don’t the UPPERCASE title Welcome To The Dre O Radio Show to show

    Using firebug I found out where my bread crumb control is.
    For some reason it’s centered I messed with this area where the padding is thinking that would move it

    .bbp-breadcrumb {
    background: #111;
    border-bottom: 1px solid #2c2c2c;
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    -ms-box-sizing: border-box;
    -o-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    font-size: 11px;
    line-height: 18px;
    padding: 8px 40px 9px;
    }

    I changed the 40px to a lower number but it didnt move to the left like I desire.

    Those two things are driving me crazy.

    Thanks

    #129437
    solarized
    Member

    Hey, I don’t see the doubled-up posts, did you fix that?

    Looks like uppercase can be turned-off with the following:

    .ads .ad h3 a {
    text-transform: none;
    }

    #129446
    jrobin747
    Participant

    Thanks solarized. I haven’t changed anything yet. I want Welcome to The Dre O Radio Show to show only once. The title that is showing in light blue and uppercase I don’t want to show at all.

    #129453
    CrocoDillon
    Participant

    Are you sure the site is online? I’m seeing this: http://snag.gy/SpRlK.jpg

    #129472
    jrobin747
    Participant

    yes it’s there. I’ve been searching the code all dang on day :0(

    #129474
    EJMD
    Participant

    I also get a page that ‘indicates the webmaster has not uploaded a website to the server’ – the same one displayed by CrocoDillon.

    #129475
    jrobin747
    Participant

    I am so sorry everyone. The correct url is http://www.gospelrappers.org

    I forgot the letter “s”

    #129501
    wolfcry911
    Participant

    It looks to me like you want to change the page settings in wordpress (that is what you’re using, right?). Using CSS to hide the h1 is just a band-aid; in reality you don’t want that h1 output to begin with. Or if you do, you want it to be different than the first list item – something like ‘Recent Posts’ or similar.

    #129504
    Podders
    Participant

    The alignment issue you have is because you have an align attribute set on the container div

    This is aligning all of the text in the whole site to the center, try removing that then adding the css declaration

    text-align:center;

    Only to the elements that you want the text centered in your CSS file

    #129563
    jrobin747
    Participant

    thanks for responding Podders

    I searched my style.css for

    and it doesn’t exist.

    But the word center shows up 23 times

    #129569
    wolfcry911
    Participant

    it’s not in your styles – it’s in the html.
    again, you’ll need to address the cms to fix this (the correct way).

Viewing 11 posts - 1 through 11 (of 11 total)
  • The forum ‘CSS’ is closed to new topics and replies.