Forums

Twenty Ten: Blog Post Linked Text Margin Issue (3 posts)

  1. bhauser
    Member
    Posted 1 year ago #

    Hi, I am having an issue with my text alignment on the blog page of the website I am creating. http://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! :)

  2. alchymyth
    The Sweeper
    Posted 1 year ago #

    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;
    }
  3. bhauser
    Member
    Posted 1 year ago #

    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!

Topic Closed

This topic has been closed to new replies.

About this Topic