The forum of the forums
Would you like to react to this message? Create an account in a few clicks or log in to continue.

Widgets and banner

4 posters

Go down

Solved Widgets and banner

Post by Mineko October 21st 2020, 11:19 pm

Hello!
I may not be asking my questions in the right place. So I apologize in advance for that. ^^" Sorry, my english is not very good. Sad
My first question would be, how could I insert an image at the bottom of the widgets?
The first picture is my forum, the second is what I want.

https://i.imgur.com/pJm2w6t.jpeg and https://i.imgur.com/Q8jRhlj.jpeg

I have used this code for widgets so far:
Code:
.modulcim {
color: #E1BAFF;
font-family: 'Unkempt', cursive;
display: block;
font-size: 24px;
letter-spacing: 0px;
line-height: 38px;
padding: 7px;
word-spacing: 3px;
text-align:center;
background-image: url("https://i.imgur.com/5PzLN0M.png");
text-shadow: #000000 0px 0px 5px, #000000 0px 0px 10px, #000000 0px 0px 15px, #000000 0px 0px 20px, #000000 0px 0px 30px, #000000 0px 0px 40px, #000000 0px 0px 50px, #000000 0px 0px 75px;}

My second question is, can the header be moved vertically?

The forum: phpbb2
Link: https://blackmoonfrpg.hungarianforum.com

Thanks in advance to everyone for the answers. <3
Mineko
Mineko
Forumember

Female Posts : 57
Reputation : 1
Language : Hungarian
Location : Hungary

https://blackmoonfrpg.hungarianforum.com

Back to top Go down

Solved Re: Widgets and banner

Post by brandon_g October 22nd 2020, 4:32 am

Hello,

Can you tell me what image you want at the bottom of the widget? Also what do you mean move the header vertically? Do you want it wider or something?

-Brandon


Widgets and banner Brando10
Remember to mark your topic Widgets and banner Solved15 when a solution is found.
General Rules | Tips & Tricks | FAQ | Forgot Founder Password?

Widgets and banner Scre1476
Team Leader
Review Section Rules | Request A Review | Sticker Points
brandon_g
brandon_g
Manager
Manager

Male Posts : 10110
Reputation : 923
Language : English
Location : USA

https://www.broadcastingduo.com

Back to top Go down

Solved Re: Widgets and banner

Post by Mineko October 22nd 2020, 11:29 am

Hello ^^
I want this image at the bottom of the widget: https://i.imgur.com/LyJUKON.png

Or, when I put in a navigation code, it hangs in the header. and because of that, I want to push it a little lower so you don’t hit each other.

https://i.imgur.com/bLmuYIL.jpg
Mineko
Mineko
Forumember

Female Posts : 57
Reputation : 1
Language : Hungarian
Location : Hungary

https://blackmoonfrpg.hungarianforum.com

Back to top Go down

Solved Re: Widgets and banner

Post by brandon_g October 23rd 2020, 11:25 pm

For banner overlap issue add this to your css and it should get rid of the overlap:
Code:
#i_logo {
  margin-top:4%;
}

As for adding the image to the widget, it will require template editing, although since I no longer have a phpbb2 forum I don't know what template the widget code is in.

Perhaps @Skouliki or @TheCrow can help you with that issue further.


Widgets and banner Brando10
Remember to mark your topic Widgets and banner Solved15 when a solution is found.
General Rules | Tips & Tricks | FAQ | Forgot Founder Password?

Widgets and banner Scre1476
Team Leader
Review Section Rules | Request A Review | Sticker Points
brandon_g
brandon_g
Manager
Manager

Male Posts : 10110
Reputation : 923
Language : English
Location : USA

https://www.broadcastingduo.com

Back to top Go down

Solved Re: Widgets and banner

Post by Mineko October 23rd 2020, 11:52 pm

Oh, I love it! Thank you very much for the banner code. <3 <3 <3 @brandon_g
Mineko
Mineko
Forumember

Female Posts : 57
Reputation : 1
Language : Hungarian
Location : Hungary

https://blackmoonfrpg.hungarianforum.com

Back to top Go down

Solved Re: Widgets and banner

Post by skouliki October 25th 2020, 8:37 am

in the code, you already have (see below), replace the background image with the image url you want to have as a background to your widget

Code:

.modulcim {
color: #E1BAFF;
font-family: 'Unkempt', cursive;
display: block;
font-size: 24px;
letter-spacing: 0px;
line-height: 38px;
padding: 7px;
word-spacing: 3px;
text-align:center;
background-image: url("YOURIMAGEHERE");
text-shadow: #000000 0px 0px 5px, #000000 0px 0px 10px, #000000 0px 0px 15px, #000000 0px 0px 20px, #000000 0px 0px 30px, #000000 0px 0px 40px, #000000 0px 0px 50px, #000000 0px 0px 75px;}


skouliki
skouliki
Manager
Manager

Female Posts : 15164
Reputation : 1696
Language : English,Greek
Location : Greece

http://iconskouliki.forumgreek.com

Back to top Go down

Solved Re: Widgets and banner

Post by Mineko October 25th 2020, 11:25 am

Yes, I mean. There is no problem with that.
My problem is that I want a picture both above and below. Like here: https://i.imgur.com/Q8jRhlj.jpg
Here is a picture below and above. That's what I want. ^^
Mineko
Mineko
Forumember

Female Posts : 57
Reputation : 1
Language : Hungarian
Location : Hungary

https://blackmoonfrpg.hungarianforum.com

Back to top Go down

Solved Re: Widgets and banner

Post by skouliki October 25th 2020, 12:19 pm

I need both image urls please

skouliki
skouliki
Manager
Manager

Female Posts : 15164
Reputation : 1696
Language : English,Greek
Location : Greece

http://iconskouliki.forumgreek.com

Back to top Go down

Solved Re: Widgets and banner

Post by Mineko October 25th 2020, 12:49 pm

https://i.imgur.com/LyJUKON.png That would be the bottom picture ^^
Mineko
Mineko
Forumember

Female Posts : 57
Reputation : 1
Language : Hungarian
Location : Hungary

https://blackmoonfrpg.hungarianforum.com

Back to top Go down

Solved Re: Widgets and banner

Post by skouliki October 25th 2020, 1:38 pm

replace your code with this

Code:

.modulcim {
  background-image: url(https://i.imgur.com/5PzLN0M.png), url(https://i.imgur.com/LyJUKON.png);
  background-position: top, bottom;
  background-repeat: no-repeat, no-repeat;
  color: #E1BAFF;
font-family: 'Unkempt', cursive;
display: block;
font-size: 24px;
letter-spacing: 0px;
line-height: 38px;
padding: 7px;
word-spacing: 3px;
text-align:center;
text-shadow: #000000 0px 0px 5px, #000000 0px 0px 10px, #000000 0px 0px 15px, #000000 0px 0px 20px, #000000 0px 0px 30px, #000000 0px 0px 40px, #000000 0px 0px 50px, #000000 0px 0px 75px;}

skouliki
skouliki
Manager
Manager

Female Posts : 15164
Reputation : 1696
Language : English,Greek
Location : Greece

http://iconskouliki.forumgreek.com

Back to top Go down

Solved Re: Widgets and banner

Post by Mineko October 25th 2020, 1:49 pm

It has happened, no change has taken place T_T
I'm really sad now :'(
Link: https://blackmoonfrpg.hungarianforum.com
Very bad forum, don't want what I do XD
Mineko
Mineko
Forumember

Female Posts : 57
Reputation : 1
Language : Hungarian
Location : Hungary

https://blackmoonfrpg.hungarianforum.com

Back to top Go down

Solved Re: Widgets and banner

Post by skouliki October 25th 2020, 8:37 pm

replace my above code ...with this

Code:

.modulcim {
color: #E1BAFF;
font-family: 'Unkempt', cursive;
display: block;
font-size: 24px;
letter-spacing: 0px;
line-height: 38px;
padding: 7px;
word-spacing: 3px;
text-align:center;
background-image: url("https://i.imgur.com/5PzLN0M.png");
text-shadow: #000000 0px 0px 5px, #000000 0px 0px 10px, #000000 0px 0px 15px, #000000 0px 0px 20px, #000000 0px 0px 30px, #000000 0px 0px 40px, #000000 0px 0px 50px, #000000 0px 0px 75px;}

.forumline .row1, .forumline .row2, .forumline .row3, .forumline .row3Right {
    background-image: url(https://i.imgur.com/5PzLN0M.png);
    background-repeat: no-repeat;
      background-position: bottom;
    padding: 2px 3px;
}

skouliki
skouliki
Manager
Manager

Female Posts : 15164
Reputation : 1696
Language : English,Greek
Location : Greece

http://iconskouliki.forumgreek.com

Back to top Go down

Solved Re: Widgets and banner

Post by Mineko October 25th 2020, 8:53 pm

Ahw * - * One degree better, but still not perfect. ^^"
I'm sorry I have so much trouble. Sad
There are places where it is covered and there are places where it is constantly repeated. Sad
Mineko
Mineko
Forumember

Female Posts : 57
Reputation : 1
Language : Hungarian
Location : Hungary

https://blackmoonfrpg.hungarianforum.com

Back to top Go down

Solved Re: Widgets and banner

Post by skouliki October 25th 2020, 9:34 pm

That is because not all widgets have the same structure
skouliki
skouliki
Manager
Manager

Female Posts : 15164
Reputation : 1696
Language : English,Greek
Location : Greece

http://iconskouliki.forumgreek.com

Back to top Go down

Solved Re: Widgets and banner

Post by Mineko October 25th 2020, 10:13 pm

And then what can I do? Should I give it up? q.q
Mineko
Mineko
Forumember

Female Posts : 57
Reputation : 1
Language : Hungarian
Location : Hungary

https://blackmoonfrpg.hungarianforum.com

Back to top Go down

Solved Re: Widgets and banner

Post by skouliki October 25th 2020, 10:36 pm

Only the two last are repeating?
skouliki
skouliki
Manager
Manager

Female Posts : 15164
Reputation : 1696
Language : English,Greek
Location : Greece

http://iconskouliki.forumgreek.com

Back to top Go down

Solved Re: Widgets and banner

Post by Mineko October 25th 2020, 11:06 pm

Yes.
The others are covered.
Mineko
Mineko
Forumember

Female Posts : 57
Reputation : 1
Language : Hungarian
Location : Hungary

https://blackmoonfrpg.hungarianforum.com

Back to top Go down

Solved Re: Widgets and banner

Post by skouliki October 26th 2020, 7:46 am

i cannot inspect the elements if you remove the code
skouliki
skouliki
Manager
Manager

Female Posts : 15164
Reputation : 1696
Language : English,Greek
Location : Greece

http://iconskouliki.forumgreek.com

Back to top Go down

Solved Re: Widgets and banner

Post by Mineko October 26th 2020, 12:07 pm

oh ok >. <
Then I'll put it back ^^ Sorry>.>
Mineko
Mineko
Forumember

Female Posts : 57
Reputation : 1
Language : Hungarian
Location : Hungary

https://blackmoonfrpg.hungarianforum.com

Back to top Go down

Solved Re: Widgets and banner

Post by skouliki October 26th 2020, 1:20 pm

sorry i can not isolate the elements they are under the same id

maybe someone else can help you
skouliki
skouliki
Manager
Manager

Female Posts : 15164
Reputation : 1696
Language : English,Greek
Location : Greece

http://iconskouliki.forumgreek.com

Back to top Go down

Solved Re: Widgets and banner

Post by Mineko October 26th 2020, 2:08 pm

I hope too. Thanks for trying Smile @skouliki
Mineko
Mineko
Forumember

Female Posts : 57
Reputation : 1
Language : Hungarian
Location : Hungary

https://blackmoonfrpg.hungarianforum.com

skouliki likes this post

Back to top Go down

Solved Re: Widgets and banner

Post by tikky October 28th 2020, 11:06 am

Hello @Mineko,

Welcome to Forumotion Support Forum! Do you want to add an image to the bottom of the widgets?
tikky
tikky
Forumember

Posts : 898
Reputation : 157
Language : 🇵🇹

https://www.forumotion.com/create-forum/modernbb

Back to top Go down

Solved Re: Widgets and banner

Post by Mineko October 28th 2020, 11:14 am

Yep. Smile
But it hasn't worked out yet. :'(
Mineko
Mineko
Forumember

Female Posts : 57
Reputation : 1
Language : Hungarian
Location : Hungary

https://blackmoonfrpg.hungarianforum.com

Back to top Go down

Solved Re: Widgets and banner

Post by tikky October 28th 2020, 12:16 pm

Add in your stylesheet and tell me if this is what you want:
Code:
#left table[summary],
#left > table [class^="row"]:not([title$="%"]):not(.genmed) {
    background-image: url(https://i.imgur.com/5PzLN0M.png);
    background-repeat: no-repeat;
    background-position: bottom;
    box-sizing: border-box;
}

#left table[summary]:after,
#left > table [class^="row"]:not([title$="%"]):not(.genmed):after {
    padding-bottom: calc(200 / 400 * 100%);
    display: block;
    content: '';
}

#left table[summary]:after {
    padding-bottom: calc(400 / 300 * 100%) !important;
}
tikky
tikky
Forumember

Posts : 898
Reputation : 157
Language : 🇵🇹

https://www.forumotion.com/create-forum/modernbb

TonnyKamper likes this post

Back to top Go down

Solved Re: Widgets and banner

Post by Mineko October 28th 2020, 1:33 pm

Widgets and banner WiO0T5A

Yes, yes, YEEEES! *she bounces in his chair in joy *
So much so that it doubles here, not elsewhere.
Mineko
Mineko
Forumember

Female Posts : 57
Reputation : 1
Language : Hungarian
Location : Hungary

https://blackmoonfrpg.hungarianforum.com

Back to top Go down

Solved Re: Widgets and banner

Post by tikky October 28th 2020, 2:51 pm

+1 Add in your CSS:
Code:
#gallery_container tr:first-child > .row1 {
    background: none !important;
}
tikky
tikky
Forumember

Posts : 898
Reputation : 157
Language : 🇵🇹

https://www.forumotion.com/create-forum/modernbb

TonnyKamper likes this post

Back to top Go down

Solved Re: Widgets and banner

Post by Mineko October 28th 2020, 3:15 pm

YEEEEEES!!! I love you I love you I love you
I love it. I love you too. Thanks! Thank you very, very, very much!!!
Mineko
Mineko
Forumember

Female Posts : 57
Reputation : 1
Language : Hungarian
Location : Hungary

https://blackmoonfrpg.hungarianforum.com

Back to top Go down

Solved Re: Widgets and banner

Post by skouliki October 28th 2020, 3:17 pm

Thank you pedxz

Is this solved now ?

skouliki
skouliki
Manager
Manager

Female Posts : 15164
Reputation : 1696
Language : English,Greek
Location : Greece

http://iconskouliki.forumgreek.com

tikky likes this post

Back to top Go down

Solved Re: Widgets and banner

Post by Mineko October 28th 2020, 3:35 pm

Yepp! Smile Thank you, everyone Smile
Mineko
Mineko
Forumember

Female Posts : 57
Reputation : 1
Language : Hungarian
Location : Hungary

https://blackmoonfrpg.hungarianforum.com

tikky likes this post

Back to top Go down

Solved Re: Widgets and banner

Post by skouliki October 28th 2020, 3:54 pm

Problem solved & topic archived.
Please read our forum rules: ESF General Rules
skouliki
skouliki
Manager
Manager

Female Posts : 15164
Reputation : 1696
Language : English,Greek
Location : Greece

http://iconskouliki.forumgreek.com

Back to top Go down

Back to top

- Similar topics

 
Permissions in this forum:
You cannot reply to topics in this forum