Jump to content

[SOLVED] Problem with contact info block (where is this 10 pixels coming from)


Recommended Posts

/*************** Block CONTACTINFOS ***************/

#block_contact_infos {padding:15px 0px;}
#block_contact_infos li {
	padding:0 !important;
	line-height: 20px;

in your global.css line 2658

change the 15px to 0px

 

let me know the result.

  • Like 1
Link to comment
Share on other sites

To get the permanent links over to the right do the following:

 

find reviver/css/modules/blockpermanentlinks/blockpermanentlinks.css

#header_links {
    display: block;
    left: 300px;
    position: absolute;
    top: -26px;
}

change this to

#header_links {
    display: block;
}

Next find

ul#header_links {
    float: right;
    list-style-type: none;
    margin-top: 5px;
}

change this to

ul#header_links {
    float: right;
    list-style-type: none;
    margin-top: -23px;
}

Hope that helps!

 

Marty Shue

  • Like 1
Link to comment
Share on other sites

×
×
  • Create New...