News:

Join the Facebook Fan Page.

Main Menu

Bend

Started by TwitchisMental, January 08, 2022, 06:23:59 PM

Previous topic - Next topic

TwitchisMental

Quote from: beermoney on July 11, 2022, 03:12:45 PM@TwitchisMental that fixed it all except for the .border-wrap and .cat_bar border-radius.
Should not be an issue.

Did you replace all of the files ?

You should be seeing this - 

You cannot view this attachment.

If you did not replace the css, just add this to the bottom of the custom.css -

.border-rad-top {
  border-radius: 8px 8px 0px 0px;
}
 

beermoney

I did replace all the files, however, I am using my own version of custom.css.  So if you made a change to that then that is the reason.  I didn't know if it was just messed up or if it was my custom version of custom.css.  So I thought it would be better to say something in case it was messed up.  Thank you for getting this taken care of today.  Really like your theme and have been working on it for a few days now.

TwitchisMental

Quote from: beermoney on July 11, 2022, 05:19:00 PMI did replace all the files, however, I am using my own version of custom.css.  So if you made a change to that then that is the reason.  I didn't know if it was just messed up or if it was my custom version of custom.css.  So I thought it would be better to say something in case it was messed up.  Thank you for getting this taken care of today.  Really like your theme and have been working on it for a few days now.
Sounds good.

No problem on resolving the issue, thank you for reporting it.



beermoney

Question, is there a way to center the profile icons in a post?  I've tried a few different things and nothing worked.  So I thought I would come here and see if anyone has any idea on how to make it work.  I centered everything in .poster but the .profile_icons won't center.

TwitchisMental

Just add this to the custom.css -

.profile_icons li {
    display: inline;
    padding-right: 0px;
}

That should get the result that you are after.

beermoney

I had to add !important to it but that worked.  Thank you.

.profile_icons li {
    display: inline !important;
    padding-right: 0px !important;
}

CDPSP

I downloaded this one and love it, but I want to change my logo.  I read through everything and you said to just replace the logo.png file in the Images > custom.  I did that and I still don't have my logo.  Something else I need to do that I am missing maybe?? 

TwitchisMental

Quote from: CDPSP on July 26, 2022, 11:28:20 AMI downloaded this one and love it, but I want to change my logo.  I read through everything and you said to just replace the logo.png file in the Images > custom.  I did that and I still don't have my logo.  Something else I need to do that I am missing maybe?? 
You should just need to replace the logo file itself. If you could link me to your forum, I can take a look at what is going on. You can PM it to me if you rather not post it publicly aswell.

Steve

Your preferred logo image is a .png?
DO NOT pm me for support!

CDPSP

Thank you so much for your replies, but I spent about 3 hours on it after I wrote this and eventually through trial and error figured it out.

https://creativediscoveryinpaintshoppro.com.au/forum/index.php [nofollow]

TwitchisMental

Quote from: CDPSP on July 26, 2022, 09:38:18 PMThank you so much for your replies, but I spent about 3 hours on it after I wrote this and eventually through trial and error figured it out.

https://creativediscoveryinpaintshoppro.com.au/forum/index.php

Happy to hear that you got the issue resolved :).

Dave J

Hi Twitch,

This has been bugging me for a while but I was living with it until now  ;)

When we get a PM popup or if we look at who 'Thanked' a post the popup spreads itself across the whole page as can be seen below.

I have attached a shot for SMF default and Bend.

Would you be kind enough to fix it please and let me know how I can do it so I don't have to re-install the theme, as mentioned before if I add a theme I have to uninstall at least 8 mods first.

According to the 'theme_info.xml' I'm using version 1.2. I'm not sure if that's the same as your last version which you list on the download page as 1.2.1.

Thanks for any help
If you want quizzes to add to the new SMF2.1 quiz mod go here . There are also walkthroughs in the forum to explain how to install them and other tips.

TwitchisMental

Quote from: Dave J on August 06, 2022, 09:16:18 AMHi Twitch,

This has been bugging me for a while but I was living with it until now  ;)

When we get a PM popup or if we look at who 'Thanked' a post the popup spreads itself across the whole page as can be seen below.

I have attached a shot for SMF default and Bend.

Would you be kind enough to fix it please and let me know how I can do it so I don't have to re-install the theme, as mentioned before if I add a theme I have to uninstall at least 8 mods first.

According to the 'theme_info.xml' I'm using version 1.2. I'm not sure if that's the same as your last version which you list on the download page as 1.2.1.

Thanks for any help
Interesting.. seems to only be a problem with that mods pop up window. (could still have other issues though)

Open custom.css and go to the bottom.

Find :
.popup_window, #main_menu .popup_window, #genericmenu .popup_window, #adm_submenus .popup_window {
    position: relative;
    width: auto;
    z-index: 99;
    border-radius: 0;
    margin: 0 auto;
    padding: 0;
    background: none;
    border: none;
    box-shadow: none;
}

Replace with -

.popup_window, #main_menu .popup_window, #genericmenu .popup_window, #adm_submenus .popup_window {
    position: relative;
    z-index: 99;
    border-radius: 0;
    margin: 0 auto;
    padding: 0;
    background: none;
    border: none;
    box-shadow: none;
}

.popup_heading {
    padding: 10px 8px;
    color: rgb(255,255,255);
    background: linear-gradient(180deg, rgb(85, 126, 160) 0%, rgb(67, 98, 124) 100%);
}

.popup_heading, .main_icons.hide_popup {
    color: rgb(255,255,255);
}


Dave J

Quote from: TwitchisMental on August 06, 2022, 12:31:55 PM
Quote from: Dave J on August 06, 2022, 09:16:18 AMHi Twitch,

This has been bugging me for a while but I was living with it until now  ;)

When we get a PM popup or if we look at who 'Thanked' a post the popup spreads itself across the whole page as can be seen below.

I have attached a shot for SMF default and Bend.

Would you be kind enough to fix it please and let me know how I can do it so I don't have to re-install the theme, as mentioned before if I add a theme I have to uninstall at least 8 mods first.

According to the 'theme_info.xml' I'm using version 1.2. I'm not sure if that's the same as your last version which you list on the download page as 1.2.1.

Thanks for any help
Interesting.. seems to only be a problem with that mods pop up window. (could still have other issues though)

Open custom.css and go to the bottom.

Find :
.popup_window, #main_menu .popup_window, #genericmenu .popup_window, #adm_submenus .popup_window {
    position: relative;
    width: auto;
    z-index: 99;
    border-radius: 0;
    margin: 0 auto;
    padding: 0;
    background: none;
    border: none;
    box-shadow: none;
}

Replace with -

.popup_window, #main_menu .popup_window, #genericmenu .popup_window, #adm_submenus .popup_window {
    position: relative;
    z-index: 99;
    border-radius: 0;
    margin: 0 auto;
    padding: 0;
    background: none;
    border: none;
    box-shadow: none;
}

.popup_heading {
    padding: 10px 8px;
    color: rgb(255,255,255);
    background: linear-gradient(180deg, rgb(85, 126, 160) 0%, rgb(67, 98, 124) 100%);
}

.popup_heading, .main_icons.hide_popup {
    color: rgb(255,255,255);
}




That seems to have done the trick Twitch at least it has for the 'Thanks' issue, I'm guessing it'll be OK for the PM notifications too.

Thank you

I'll send you a PM on my place and you can see if it's OK sometime
If you want quizzes to add to the new SMF2.1 quiz mod go here . There are also walkthroughs in the forum to explain how to install them and other tips.

TwitchisMental

Quote from: Dave J on August 06, 2022, 12:48:41 PM
Quote from: TwitchisMental on August 06, 2022, 12:31:55 PM
Quote from: Dave J on August 06, 2022, 09:16:18 AMHi Twitch,

This has been bugging me for a while but I was living with it until now  ;)

When we get a PM popup or if we look at who 'Thanked' a post the popup spreads itself across the whole page as can be seen below.

I have attached a shot for SMF default and Bend.

Would you be kind enough to fix it please and let me know how I can do it so I don't have to re-install the theme, as mentioned before if I add a theme I have to uninstall at least 8 mods first.

According to the 'theme_info.xml' I'm using version 1.2. I'm not sure if that's the same as your last version which you list on the download page as 1.2.1.

Thanks for any help
Interesting.. seems to only be a problem with that mods pop up window. (could still have other issues though)

Open custom.css and go to the bottom.

Find :
.popup_window, #main_menu .popup_window, #genericmenu .popup_window, #adm_submenus .popup_window {
    position: relative;
    width: auto;
    z-index: 99;
    border-radius: 0;
    margin: 0 auto;
    padding: 0;
    background: none;
    border: none;
    box-shadow: none;
}

Replace with -

.popup_window, #main_menu .popup_window, #genericmenu .popup_window, #adm_submenus .popup_window {
    position: relative;
    z-index: 99;
    border-radius: 0;
    margin: 0 auto;
    padding: 0;
    background: none;
    border: none;
    box-shadow: none;
}

.popup_heading {
    padding: 10px 8px;
    color: rgb(255,255,255);
    background: linear-gradient(180deg, rgb(85, 126, 160) 0%, rgb(67, 98, 124) 100%);
}

.popup_heading, .main_icons.hide_popup {
    color: rgb(255,255,255);
}




That seems to have done the trick Twitch at least it has for the 'Thanks' issue, I'm guessing it'll be OK for the PM notifications too.

Thank you

I'll send you a PM on my place and you can see if it's OK sometime

Go ahead to confirm problem solved. I found one or two other things to fix so I am gonna release another update for this theme.

TwitchisMental

#55
New Update

1.2.2
Bug Fix : Fixed a bug where the menu would move up when in the browser packages section.
Bug Fix : Fixed a bug with the Pop Up Window taking the whole width of the screen.
Bug Fix : Fixed an issue where you could only display one custom block in the sidebar.
Adjustment: Adjusted the text colors in the pop up window header.

For manual fixes -

1. Just replace the admin.css with the new admin.css.
2. See manual fix above.
3. In the index.template.php remove the extra "else" under the first custom sidebar. (Whoopsies.. kinda surprised no one reported this one lol)
4. See manual fix above.

iqbalresources

Hi

1) may i know how to put image as a background?

2) how to change color of vertical icon on the lift side? (profile, unread,and so on). i've looking in the image folder, but couldn't find.

thank you

TwitchisMental

1. Open custom css and change the background-image: to whatever you would like.

For example -
background-image: url(../images/custom/yourbackground.png)
2. Open Custom.CSS find line 203

You will need to go and change the colors on a  few different classes. There are a few different ones for the block itself and the icons.

TwitchisMental

Quote from: iqbalresources on August 17, 2022, 11:41:12 PM
Quote from: TwitchisMental on August 17, 2022, 10:28:50 PM1. Open custom css and change the background-image: to whatever you would like.

For example -
background-image: url(../images/custom/yourbackground.png)
2. Open Custom.CSS find line 203


You will need to go and change the colors on a  few different classes. There are a few different ones for the block itself and the icons.

thanks mate

1) i've edit at the beginning of the custom.css. but the background still not appear. something wrong with my code or placement? the image safely placed in images folder.

 
/* The Basics */

body {
  
   background-image: url(../images/background.png)
    background-image: linear-gradient(rgb(226, 233, 243) 0%, rgb(255, 255, 255) 70%);
}

a:link,a:visited {
color: rgb(85, 126, 160);
text-decoration: none;
}

2) noted with thanks
You need to remove the
background-image: linear-gradient(rgb(226, 233, 243) 0%, rgb(255, 255, 255) 70%);

iqbalresources

aha. thanks mate!.  ;)  thumbs up

Advertisement: