• Resolved fufimaki

    (@fufimaki)


    Hi,

    I am trying to set the width of the title box to a specifc size so all of them would be at the same size, this is what I have done but is not working.

    .fondo {
    border: 1px dotted #aaaaaa;
    padding: 7px;
    background-position: 98% center;
    background-color: #cccccc;
    width: 650px !important;
    }

    Thanks
    Regards

    The page I need help with: [log in to see the link]

Viewing 1 replies (of 1 total)
  • Plugin Author twinpictures

    (@twinpictures)

    This is because the default tag element on the site is set as a span tag. Span tags are inline elements without width or height atrributes.

    Try changing the default element tag to div in the plugin settings. Then you will need to change the CSS as follows:

    .fondo {
       border: 1px dotted #aaaaaa;
       padding: 7px;
       background-position: 98% center;
       background-color: #cccccc;
       width: 40%;
       display: inline-block;
    }
    

    Hope that helps.

Viewing 1 replies (of 1 total)
  • The topic ‘Changing the title box width size’ is closed to new replies.