Announcement

Collapse
No announcement yet.

menu text space

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

    menu text space

    where do I reduce the space of the text on the sidebar menu,.
    please see attached image
    Attached Files

    #2
    It looks like you are using the Prime theme. Go to Design menu > Library > Layouts tab > Web Page Outer Layout > Actinic Stylesheet > search for "graduated-link a". You should find this code:

    Code:
    .graduated-link a {
    	display: block;
    	padding: 5px 0 5px 30px;
    	font-weight: bold;
    	text-decoration: none;
    	border: solid 1px <actinic:variable name="Palette3" />;
    	border-bottom: 0;
    	border-right: 0;
    	background-image: url('prime_link_background.gif');
    	background-repeat: no-repeat;
    	}
    The padding amounts in pixels is in the order top right bottom left. So you need to adjust the amount of padding for left which is currently 30px, change this then Apply > OK.
    Peblaco

    Comment


      #3
      Originally posted by peblaco View Post
      It looks like you are using the Prime theme. Go to Design menu > Library > Layouts tab > Web Page Outer Layout > Actinic Stylesheet > search for "graduated-link a". You should find this code:

      Code:
      .graduated-link a {
      	display: block;
      	padding: 5px 0 5px 30px;
      	font-weight: bold;
      	text-decoration: none;
      	border: solid 1px <actinic:variable name="Palette3" />;
      	border-bottom: 0;
      	border-right: 0;
      	background-image: url('prime_link_background.gif');
      	background-repeat: no-repeat;
      	}
      The padding amounts in pixels is in the order top right bottom left. So you need to adjust the amount of padding for left which is currently 30px, change this then Apply > OK.
      Ah peblaco thank you so much,. have been searching the help files and community for this we thing but couldnt find nowt,.

      that has worked no bother,. Cheers Sir

      Comment

      Working...
      X