• bhauser

    (@bhauser)


    Hi, I am having an issue with my text alignment on the blog page of the website I am creating. https://www.buyproaqua.com/blog/. As you can see the blog post title is cut off by the navigation.

    I have successfully fixed this issue on other pages on the website by going into the style.css and editing the content h1 by giving it a margin-top: 25px;.

    When inspecting this element in IE, it didn’t identify what div id or class this fell under, all it shows me is how the link is structured. So if someone could help me even be helping to determine what class it falls under that would be greatly appreciated! ??

Viewing 2 replies - 1 through 2 (of 2 total)
  • Michael

    (@alchymyth)

    edit style.css of your theme:

    the post title is cut off, because there is a large negative margin-top in this style:

    #container {
    	float: left;
    	margin: 0 0px 0 0;
    	width: 100%;
    	background-color: #FFF;
    	margin-left: 20px;
    	margin-top: -135px;
    }

    if you remove this, then there is an extra padding-top visible in here:

    #main {
    	clear: both;
    	overflow: hidden;
    	padding: 40px 0 0 0;
    	width: 955px;
    	margin-left: -17px;
    }
    Thread Starter bhauser

    (@bhauser)

    Okay that worked well thanks. However, I now want to get rid of the page title on every page – what I mean by the page title is the black text that is display the name of that page that is currently selected. If know how to do this let me know, i am also posting a topic about this. Thanks!

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Twenty Ten: Blog Post Linked Text Margin Issue’ is closed to new replies.