• Resolved drumming207

    (@drumming207)


    I am trying to put some text underneath my “Spine Patient Society” logo on my WordPress homepage (http://www.spinepatientsociety.org).

    I have this code so far

    <span style=”font-family:georgia;color:#0000cc;font-size:small”>An Educational and Support Society of the Spine Patient Foundation</span>

    but it is making the text look like this:

    An Educational and Support Society of
    the Spine Patient Foundation

    and I want it to “justify” horizontal without any returns like this:

    An Educational and Support Society of the Spine Patient Foundation

    What am I missing in my code to do this?

    Thanks!

Viewing 2 replies - 1 through 2 (of 2 total)
  • you are missing space in the haeder.

    make a few adjustments:
    <span style="font-family: georgia; color: rgb(0, 0, 204);float:left;">An Educational and Support Society of the Spine Patient Foundation</span>

    and in style.css – increase width of .topnavbarleft to 480px – decrease width in .topnavbarrigth to 400px:

    .topnavbarleft {
    	width: 480px;
    	float: left;
    	margin: 0px;
    	padding: 8px 0px 0px 10px;
    	}
    
    .topnavbarright {
    	width: 400px;
    	float: right;
    	margin: 0px;
    	padding: 7px 10px 0px 0px;
    	/* text-transform: uppercase; */
    	text-align: right;
    	}

    hope this helps 😉

    Thread Starter drumming207

    (@drumming207)

    Thanks alchymyth!

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

The topic ‘Header Question’ is closed to new replies.