Warning: file_get_contents(/data/phpspider/zhask/data//catemap/7/css/34.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181
在phpBB中调整按钮大小_Php_Css_Phpbb_Phpbb3 - Fatal编程技术网

在phpBB中调整按钮大小

在phpBB中调整按钮大小,php,css,phpbb,phpbb3,Php,Css,Phpbb,Phpbb3,因此,我有一个模块,我试图调整模块中使用的按钮的大小,使其适合更大的图像。另外,如何缩小图像的比例以适应特定的按钮尺寸? 下面是我用于按钮的css代码。按钮的图像通过感谢图标和removethanks图标导入。这是带有导入的图标的图像:。我想用我自己的按钮来替换这些按钮,它们是:upvote和downvote(重新调整了比例,以便它们适合帖子的“锁定”按钮 dl.thanks { min-height: 35px; background-position: 10px 50%;

因此,我有一个模块,我试图调整模块中使用的按钮的大小,使其适合更大的图像。另外,如何缩小图像的比例以适应特定的按钮尺寸? 下面是我用于按钮的css代码。按钮的图像通过感谢图标和removethanks图标导入。这是带有导入的图标的图像:。我想用我自己的按钮来替换这些按钮,它们是:upvote和downvote(重新调整了比例,以便它们适合帖子的“锁定”按钮

dl.thanks {
    min-height: 35px;
    background-position: 10px 50%;      /* Position of folder icon */
    background-repeat: no-repeat;
}

dl.thanks dt {
    padding-left: 45px;                 /* Space for folder icon */
    background-repeat: no-repeat;
    background-position: 5px 95%;       /* Position of topic icon */
    width: 45%;
}

dd.lastpostthanks {
    width: auto;
    font-size: 1.1em;
}
dd.lastpostthanks span {
    display: block;
    padding-left: 5px;
}
/* List in forum description */
dl.thanks dt ol,
dl.thanks dt ul {
    list-style-position: inside;
    margin-left: 1em;
}

dl.thanks dt li {
    display: list-item;
    list-style-type: inherit;
}
li.header dl.thanks {
    min-height: 0;
}

li.header dl.thanks dt {
    /* Tweak for headers alignment when folder icon used */
    padding-left: 0;
    padding-right: 50px;
}

/* Forum list column styles */
dl.thanks {
    min-height: 35px;
    background-position: 10px 50%;      /* Position of folder icon */
    background-repeat: no-repeat;
}

dl.thanks dt {
    padding-left: 45px;                 /* Space for folder icon */
    background-repeat: no-repeat;
    background-position: 5px 95%;       /* Position of topic icon */
}

/* Icon images
---------------------------------------- */
.icon-thanks            { background-image: url("./images/icon_thanks.gif"); background-repeat: no-repeat; }
.icon-thanks_toplist    { background-image: url("./images/icon_thanks_toplist.gif"); background-repeat: no-repeat; }


/* Profile & navigation icons */
.thanks-icon:before
{
    width: 60px;
     background-position: -3px -1px;
     background-image: url("./images/icons_button_likes.png");
}
//.thanks-icon:hover:before{ background-position: -3px -19px; }

.removethanks-icon:before
{
    background-position: -18px -2px;
    background-image: url("./images/icons_button_likes.png");

}
.removethanks-icon:hover:before {background-position: -18px -20px; }

.thanks_reput_image_back
{
    background:  url(../../../images/rating/reput_star_back.gif);
    background-repeat: repeat-x;
}
.thanks_reput_image
{
    background:  url(../../../images/rating/reput_star_gold.gif);
    background-repeat: repeat-x;
}

谢谢。

您可以添加
背景大小:cover;
以将背景图像缩放到尽可能大的程度,从而使背景区域更加清晰。

我再次对其进行了编辑。对于最初的帖子,很抱歉,但是您如何缩小我的图像以适应特定的按钮呢?或者只需要在Photoshop中正确地执行此操作并使用您所使用的功能id替换?如果您想适合图像,请将封面更改为包含(将图像缩放到最大大小,使其宽度和高度都能适合内容区域)