bkrztuk wrote:This forum have own styles because they are loaded inside our product, all that you need to do is to overwrite select/input fields.
Hey, thanks for replying i feel like i'm about to say something stupid but please bare with me since i've honestly spent 2 weeks trying to fix this before i came to the forums so i have no idea but okay so i'm just going to explain what i've gather from your help and the thought process in my head:
For the search box itself joomla.css has a field for input[type="Submit"] with this code that displays on the phpbb forum frameless integration
- Code: Select all
{
-webkit-appearance: none;
background: #d82731; *This has a line through it on chrome so i assume its being overwritten already
border: none; *being overwritten already
color: #fff !important;
cursor: pointer; *being overwritten already
display: block;
float: left;
height: 38px;
line-height: 39px;
margin: 0 5px 2px 2px; *being overwritten already
padding: 0 24px; *being overwritten already
text-align: center;
text-transform: uppercase;
transition: all 0.3s ease-out 0s; *being overwritten already
-webkit-transition: all .3s ease-out;
-moz-transition: all .3s ease-out;
-o-transition: all .3s ease-out;
transition: all .3s ease-out;
}
When i disable it then it shows correctly on the site, the issue i find is that theres nothing i can overwrite because those boxes are just using the the default attributes so i don't exactly understand how i'd make them appear back as they should.
I understand from your last post that for example i could add the custom css as #phpbb height: 20px which would overwrite the current one of 38px but considering phpbb doesn't actually have css for display: and float: for the button i don't see how i can overwrite it since anything other than it being disabled on the joomla.css for it to display correctly.
Again i'm extremely sorry for my lack of understanding here which must be tedious and tiring for you to read and reply to. Never thought something that looked as simple as this would be so difficult to do
Kind Regards