EzPortal - Portal Software for Forums

EzPortal - Made to Fit Your SMF Forum - Glad You Found Us!
+- +-

UserBox

Welcome, Guest.
Please login or register.
 
 
 
Forgot your password?

+- Recent Posts

Re: TinyMCE Editor disapears by ezxenova
May 06, 2025, 07:38:09 am

Re: TinyMCE Editor disapears by DenDen66
March 02, 2025, 06:59:40 am

Re: TinyMCE Editor disapears by DenDen66
February 28, 2025, 08:09:43 am

Re: TinyMCE Editor disapears by DenDen66
February 28, 2025, 07:31:29 am

Re: TinyMCE Editor disapears by EzPortal
February 27, 2025, 06:57:30 pm

Re: TinyMCE Editor disapears by DenDen66
February 27, 2025, 04:45:52 pm

Re: TinyMCE Editor disapears by DenDen66
February 27, 2025, 06:15:11 am

Re: TinyMCE Editor disapears by EzPortal
February 26, 2025, 04:58:45 pm

+- HTML Menu


Sample HTML Block Usage - You May Custom Code it, as needed!

Recent Topics ezBlock

TinyMCE Editor disapears by ezxenova
May 06, 2025, 07:38:09 am

Renaming a page by DenDen66
February 23, 2025, 10:51:22 am

Styling ezBlock by EzPortal
February 19, 2025, 09:15:05 pm

I don't remember how to upgrade by EzPortal
February 05, 2025, 08:44:58 am

ezPortal 5.6 release by EzPortal
January 31, 2025, 11:21:34 am

5.5.4 by EzPortal
January 16, 2025, 08:31:41 pm

Moving a block higher in list by UkuleleMan
December 17, 2024, 07:58:27 am

Mandalorian Mercs Costume Club by UkuleleMan
December 17, 2024, 07:32:20 am

New built in translations for six langauges! by EzPortal
March 26, 2024, 11:15:32 pm

Smiley missing in shoutbox 2.1.4 by hustreamload
July 26, 2023, 08:14:02 am

Author Topic: Css styling on Ezportal  (Read 12473 times)

0 Members and 1 Guest are viewing this topic.

Offline timidapsin

  • Newbie
  • *
  • Posts: 6
  • Karma: 0
Css styling on Ezportal
« on: November 06, 2015, 04:50:11 pm »
Hello, please i would like to change the styling of my recent topics block to my preferred css style, there is no place to include css style while adding a block using Ezportal

Offline EzPortal

  • Administrator
  • *****
  • Posts: 1317
  • Karma: 67
Re: Css styling on Ezportal
« Reply #1 on: November 06, 2015, 05:04:08 pm »
That at the moment but that would be a good feature request.
Like ezPortal? Support me at https://www.patreon.com/vbgamer45/

Offline timidapsin

  • Newbie
  • *
  • Posts: 6
  • Karma: 0
Re: Css styling on Ezportal
« Reply #2 on: November 06, 2015, 05:56:24 pm »
That at the moment but that would be a good feature request.
yes but how do i change the css for recent topics only? there should be a way.

Offline EzPortal

  • Administrator
  • *****
  • Posts: 1317
  • Karma: 67
Re: Css styling on Ezportal
« Reply #3 on: November 06, 2015, 06:19:28 pm »
I meant to say not at the moment. ezPortal uses the same css as the themes/SMF by default.
Like ezPortal? Support me at https://www.patreon.com/vbgamer45/

Offline timidapsin

  • Newbie
  • *
  • Posts: 6
  • Karma: 0
Re: Css styling on Ezportal
« Reply #4 on: November 06, 2015, 07:05:55 pm »
I meant to say not at the moment. ezPortal uses the same css as the themes/SMF by default.

 :( this is too bad, thought i would be able to alter the css...
and i really like ezportal... wish i could just edit the css

Offline EzPortal

  • Administrator
  • *****
  • Posts: 1317
  • Karma: 67
Re: Css styling on Ezportal
« Reply #5 on: November 06, 2015, 08:09:45 pm »
Yeah no separate css files with ezportal. the responsive version has it but not sure if it affects all blocks
Like ezPortal? Support me at https://www.patreon.com/vbgamer45/

Offline timidapsin

  • Newbie
  • *
  • Posts: 6
  • Karma: 0
Re: Css styling on Ezportal
« Reply #6 on: November 06, 2015, 08:37:40 pm »
Yeah no separate css files with ezportal. the responsive version has it but not sure if it affects all blocks
okay maybe i would wait till an update is available

Offline Maxx

  • VN Vet E4
  • Hero Member
  • *****
  • Posts: 560
  • Karma: 8
  • Gender: Male
  • Web Designer
    • SurfaceThemes - Web Design Ideas Classic Rock
Re: Css styling on Ezportal
« Reply #7 on: November 09, 2015, 09:37:29 am »
Sorry for the late reply , crazy busy :(

Each block can be style with using HTML/Css in each block as and example the HTML Menu I did like this:

Code: [Select]
<style type="text/css">
.style1 {
    text-align: left;
    background:#FFF3DC;
    border:2px #cdcdcd solid;
    padding:5px;
    border-radius: 4px;
}
</style>
</head>

<body style="background-color: #E3ECD6">


<div class="style1">


<br />
    <strong>Sample HTML Block Usage - You May Custom Code it, as needed!</strong>
<ul>
    <li>
        <a href="http://www.ezportal.com/announcements/">Announcements</a><br /><br /></li>

    <li>
        <a href="http://www.ezportal.com/community-rules/">Community Guidelines

        &amp; Rules</a><br /><br />
</li>
    <li>
        <a href="http://www.ezportal.com/how-to-section/">How To Section</a><br /><br />


    </li>
    <li>
        <a href="http://www.ezportal.com/ezportal-showcase/">EzPortal Showcase</a><br /><br />


    </li>
    <li>
        <a href="http://www.ezportal.com/support/">Support</a><br /><br />


    </li>
</ul>
</div>
</body>


Almost the way you'd style and HTML page.  only you'd leave out the HTML tags!

Style1 at the top is where you's tweak the colors, padding other stuff!

regards,
Maxx
If you find this Portal System useful, please consider supporting us with a small Donation!
Check out the How to Section!!
Please remember to keep your back ups, up to date, before you try anything new!

 

Related Topics

  Subject / Started by Replies Last post
0 Replies
25160 Views
Last post October 12, 2008, 07:30:25 pm
by EzPortal
6 Replies
22422 Views
Last post December 05, 2008, 09:15:33 pm
by EzPortal
2 Replies
16243 Views
Last post February 27, 2009, 05:01:43 am
by Anders
6 Replies
14686 Views
Last post August 03, 2010, 05:51:51 pm
by thellie
3 Replies
30514 Views
Last post February 19, 2025, 09:15:05 pm
by EzPortal

+-SMF Gallery

Quick Menu


Powered by EzPortal